Matplotlib数据框饼图绘图与我的0%标签重叠

时间:2018-09-06 22:00:37

标签: python pandas matplotlib

这是我的代码,下面是我的可视化。我的问题是,当我尝试绘制汇总的数据框时,它会不断重叠某些切片标签,并使其显得混乱和不可读。

style.use('fivethirtyeight')
age_df = fixed_df.groupby(['Intake Condition']).agg({'Animal 
ID':'count'})
age_df.plot.pie(figsize=(20,10), subplots=True,autopct='%1.000f%%')
plt.title("Conditions of Animals Brought In")

Pie chart visualization of the above code

0 个答案:

没有答案