に非常に単純な円グラフがありpyplot
ます。関連するコードは次のとおりです。
labels = 'SLoC', 'Violation'
sizes = [nrOfLines-totviols, totviols]
colors = ['#005fab', 'lightcoral']
explode = (0, 0.1)
plt.pie(sizes, explode=explode, labels=labels, colors=colors,
autopct='%1.1f%%', shadow=True, startangle=90)
plt.axis('scaled')
plt.savefig("/usr/share/scaweb/static/plot-ratio.png", transparent=True, bbox_inches='tight', pad_inches=0)
この図では、円グラフがトリミングされていますが、グラフの外側のラベルがまだ完全に表示されているため、奇妙です。
matplotlib
バージョン1.2を使用しています。