admin 管理员组文章数量: 887006
matplotlib画饼图
用Python的matplotlib画饼图:
代码:
#饼图:超市主要商品本月销售量
import matplotlib.pyplot as pltplt.title('Sales of major commodities in supermarkets for this month')
labels = 'Noodles', 'Milk', 'Biscuits', 'Chocolates'
sizes = [15, 30, 45, 10]
colors = ['lawngreen', 'gold', 'red', 'deeppink']
explode = (0.1, 0, 0, 0)
plt.pie(sizes, explode=explode, labels=labels, colors=colors, autopct='%1.1f%%', shadow=True, startangle=90)
plt.axis('equal')
plt.show()
效果图:
本文标签: matplotlib画饼图
版权声明:本文标题:matplotlib画饼图 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732355322h1534267.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论