我有一个非常简单的饼图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 版。