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