Matplotlib实例教程 | 统计DataFrame中每一个类别的占比(饼图)

Posted K同学啊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matplotlib实例教程 | 统计DataFrame中每一个类别的占比(饼图)相关的知识,希望对你有一定的参考价值。


df_raw.label.value_counts().plot(kind='pie',
                                 figsize=(10,6),
                                 fontsize=11,
                                 autopct='%0.2f%%',
                                 explode=(0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01, 0.01))
plt.ylabel('类别', fontsize=15)
plt.savefig('1.jpg')
plt.show()


可参考实例:

以上是关于Matplotlib实例教程 | 统计DataFrame中每一个类别的占比(饼图)的主要内容,如果未能解决你的问题,请参考以下文章

Matplotlib实例教程 | 统计DataFrame中数据分布情况(条形统计图)

Matplotlib实例教程饼状图

Matplotlib实例教程折线图

Matplotlib实例教程:柱状图

Matplotlib实例教程热力图

Matplotlib实例教程密度图