码迷,mamicode.com
首页 > 其他好文 > 详细

pyplot饼图绘制

时间:2017-08-08 19:38:46      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:img   hog   art   技术分享   otl   imp   sha   als   plot   

plt.pie()

 1 import matplotlib.pyplot as plt
 2 
 3 labels = Frogs,Hogs,Dogs,Logs
 4 size = [15,30,45,10]
 5 explode = (0,0.1,0,0)
 6 
 7 plt.pie(size,explode=explode,labels=labels,autopct=%1.1f%%,shadow=False,startangle=90)
 8 
 9 plt.axis(equal)
10 plt.show()

技术分享

 

pyplot饼图绘制

标签:img   hog   art   技术分享   otl   imp   sha   als   plot   

原文地址:http://www.cnblogs.com/wxlblogs/p/7307983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!