欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据可视化

程序员文章站 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()  
    
相关标签: 数据可视化