介绍
matplotlib 是python最著名的绘图库,它提供了一整套和matlab相似的命令api,十分适合交互式地进行制图。而且也可以方便地将它作为绘图控件,嵌入gui应用程序中。
它的文档相当完备,并且 gallery页面 中有上百幅缩略图,打开之后都有源程序。因此如果你需要绘制某种类型的图,只需要在这个页面中浏览/复制/粘贴一下,基本上都能搞定。
这篇文章给大家主要介绍了python用matplotlib绘制饼图的方法,话不多说,下面来看代码。
示例代码
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()
结果
更多python利用matplotlib库绘制饼图的方法示例。
