from typing import Dict import numpy as np import matplotlib.patches as mpatches import matplotlib.pyplot as plt from download_manager import DownloadManager MAX_LANGUAGES = 5 async def create_loc_graph(yearly_data: Dict, save_path: str): """ Draws graph of lines of code written by user by quarters of years. Picks top `MAX_LANGUAGES` languages from each quarter only. :param yearly_data: GitHub user yearly data. :param save_path: Path to save the graph file. """ colors = await DownloadManager.get_remote_yaml("linguist") years = len(yearly_data.keys()) year_indexes = np.arange(years) all_languages = dict() for year in yearly_data.values(): for quarter in year.values(): for language, loc in quarter.items(): all_languages[language] = all_languages.get(language, 0) + loc top_languages_names = sorted(all_languages.keys(), key=lambda l: all_languages[l], reverse=True)[0:MAX_LANGUAGES] top_languages = {language: np.array([[0] * years] * 4) for language in top_languages_names} for index, year in enumerate(sorted(yearly_data.keys())): for quarter, languages in yearly_data[year].items(): for language, loc in {(lang, loc) for lang, loc in languages.items() if lang in top_languages}: top_languages[language][quarter - 1][index] = yearly_data[year][quarter][language] fig = plt.figure() ax = fig.add_axes([0, 0, 1.5, 1]) language_handles = [] cumulative = np.array([[0] * years] * 4) for key, value in top_languages.items(): color = colors[key]["color"] if colors[key]["color"] is not None else "w" language_handles += [mpatches.Patch(color=color, label=key)] for quarter in range(4): ax.bar(year_indexes + quarter * 0.21, value[quarter], 0.2, bottom=cumulative[quarter], color=color) cumulative[quarter] = np.add(cumulative[quarter], value[quarter]) ax.set_ylabel("LOC added", fontdict=dict(weight="bold")) ax.set_xticks(np.array([np.arange(i, i + 0.84, step=0.21) for i in year_indexes]).flatten(), labels=["Q1", "Q2", "Q3", "Q4"] * years) sax = ax.secondary_xaxis("top") sax.set_xticks(year_indexes + 0.42, labels=sorted(yearly_data.keys())) sax.spines["top"].set_visible(False) ax.legend(title="Language", handles=language_handles, loc="upper left", bbox_to_anchor=(1, 1), framealpha=0, title_fontproperties=dict(weight="bold")) sax.tick_params(axis="both", length=0) sax.spines["top"].set_visible(False) ax.spines["top"].set_visible(False) ax.spines["right"].set_visible(False) plt.ylim(0, 1.05 * np.amax(cumulative)) plt.savefig(save_path, bbox_inches="tight") plt.close(fig)