饼图
饼图是一个划分为几个扇形的圆形统计图表,用于描述量、频率或百分比之间的相对关系的。 在matplotlib中,可以通过plt.pie来实现,其中的参数如下:
返回值:
假如现在我们有一组数据,用来记录各个操作系统的市场份额的。那么用饼状图表示如下:
oses = {
\'windows7\':60.86,
\'windows10\': 18.46,
\'windows8\': 3.61,
\'windows xp\': 10.3,
\'mac os\': 6.78,
\'其他\': 1.12
}
names = oses.keys()
percents = oses.values()
patches,texts,autotexts = plt.pie(percents,labels=names,autopct=\"%.2f%%\",explode=(0,0.05,0,0,0,0))
for text in texts+autotexts:
plt.setp(text,fontproperties=font)
text.set_fontsize(10)
for text in autotexts:
text.set_color(\"white\")
来源:https://www.cnblogs.com/qshhl/p/14666950.html
图文来源于网络,如有侵权请联系删除。