源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

python利用matplotlib库绘制饼图的方法示例

  • 时间:2020-05-29 21:32 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:python利用matplotlib库绘制饼图的方法示例
[b]介绍[/b] matplotlib 是python最著名的绘图库,它提供了一整套和matlab相似的命令API,十分适合交互式地进行制图。而且也可以方便地将它作为绘图控件,嵌入GUI应用程序中。 它的文档相当完备,并且 Gallery页面 中有上百幅缩略图,打开之后都有源程序。因此如果你需要绘制某种类型的图,只需要在这个页面中浏览/复制/粘贴一下,基本上都能搞定。 matplotlib的安装方法可以[url=http://www.1sucai.cn/article/51812.htm]点击这里[/url] 这篇文章给大家主要介绍了python用matplotlib绘制饼图的方法,话不多说,下面来看代码。 [b]示例代码[/b]
import matplotlib.pyplot as plt

# The slices will be ordered and plotted counter-clockwise.
labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'
sizes = [15, 30, 45, 10]
colors = ['yellowgreen', 'gold', 'lightskyblue', 'lightcoral']
explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs')

plt.pie(sizes, explode=explode, labels=labels, colors=colors,
  autopct='%1.1f%%', shadow=True, startangle=90)

# Set aspect ratio to be equal so that pie is drawn as a circle.
plt.axis('equal')


plt.savefig('D:\\pie.png')
plt.show()
[b]结果[/b] [img]http://files.jb51.net/file_images/article/201612/2016121884226184.png?2016111884236[/img] [b]总结[/b] 以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部