matplotlib饼状图

import matplotlib.pyplot as plt

labels = 'Frogs','Hogs','Dogs','Logs'
sizes = [15,30,45,10]
explode = [0,0.1,0,0] #0.1表示将Hogs那一块凸显出来
plt.pie(sizes,explode=explode,labels=labels,autopct='%1.1f%%',
        pctdistance=0.8,startangle=90)
plt.axis('equal')
plt.legend()


#调节图形大小,宽,高
plt.figure(figsize=(8,5))
#定义饼状图的标签,标签是列表
labels = ['第一部分','第二部分','第三部分']
#每个标签占多大,会自动去算百分比
sizes = [60,30,10]
colors = ['red','yellowgreen','lightskyblue']
#将某部分爆炸出来, 使用括号,将第一块分割出来,数值的大小是分割出来的与其他两块的间隙
explode = (0.05,0,0)

patches,l_text,p_text = plt.pie(sizes,explode=explode,labels=labels,colors=colors,
                                labeldistance = 1.1,autopct = '%3.1f%%',shadow = False,
                                startangle = 90,pctdistance = 0.6)

#patches, l_texts, p_texts,为了得到饼图的返回值,p_texts饼图内部文本的,l_texts饼图外label的文本

#改变文本的大小
#方法是把每一个text遍历。调用set_size方法设置它的属性
for t in l_text:
    t.set_size(15)
for i in p_text:
    i.set_size(20)
plt.axis('equal')#圆形
plt.legend()

matplotlib饼状图_第1张图片 matplotlib饼状图_第2张图片

你可能感兴趣的:(可视化)