数据可视化
程序员文章站
2022-03-10 16:21:25
...
#画饼图
def print_pie(input_data):
res = {}
for each in input_data:
res[each] = res.get(each, 0) + 1
label=[]
X=[]
for j in res:
label.append(j)
X.append(res[j])
fig = plt.figure()
plt.pie(X,labels=label,autopct='%1.2f%%') #画饼图(数据,数据对应的标签,百分数保留两位小数点)
plt.title("Pie chart")
plt.show()
下一篇: [读书笔记] 《大话设计模式》
推荐阅读