说明
1、通过弧度大小对各种分类进行比较,表示不同分类的比例。
2、pie函数可绘制饼图,饼图主要用于表现比例。只需输入比例数据即可。
语法
plt.pie(x,labels=,autopct=,colors)
实例
#导入模块 importmatplotlib.pyplotasplt importnumpyasnp #准备男女的人数和比例 man=71351 woman=68187 man_perc=man/(woman+man) woman_perc=woman/(woman+man) #添加名称 labels=['男','女'] #添加颜色 colors=['blue','red'] #画饼状图pie plt.rcParams['font.sans-serif']=['SimHei']#用于正常显示中文标签 #colorslabels名称:颜色,explode=分裂autopct显示百分比 paches,texts,autotexts=plt.pie([man_perc,woman_perc],labels=labels,colors=colors,explode=(0,0.05),autopct='%0.1f%%') #在饼状图中设置字体颜色 fortextinautotexts: text.set_color('white') #设置字体大小 fortextintexts+autotexts: text.set_fontsize(20) plt.show()
以上是python饼状图的介绍和绘制,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。