Lines Matching refs:plt
67 import matplotlib.pyplot as plt # noqa: E402 namespace
131 plt.figure()
135 b = plt.bar(ind+0.1, vals[i], width=0.8, color=colors[i], bottom=bottom, linewidth=0.25)
140 …plt.xticks(ind + .6, [p.name for p in data], rotation=-60, rotation_mode="anchor", fontsize=8, ha=…
147 sz = plt.gcf().get_figwidth()
148 plt.gcf().set_figwidth(sz * ratio)
152 plt.gcf().subplots_adjust(bottom=0.2, left=borders, right=1-borders)
155 axes = plt.gcf().gca()
165 plt.legend(legenditems, steps, prop=leg_prop)
168 plt.title('Build time of packages\n')
170 plt.title('Build time of packages, by build order\n')
172 plt.title('Build time of packages, by duration order\n')
175 plt.savefig(output)
200 plt.figure()
203 patches, texts, autotexts = plt.pie(values, labels=labels,
210 plt.setp(autotexts, fontproperties=proptease)
211 plt.setp(texts, fontproperties=proptease)
213 plt.title('Build time per package')
214 plt.savefig(output)
227 plt.figure()
230 patches, texts, autotexts = plt.pie(steps_values, labels=steps,
237 plt.setp(autotexts, fontproperties=proptease)
238 plt.setp(texts, fontproperties=proptease)
240 plt.title('Build time per step')
241 plt.savefig(output)