This is my code and I have my visualization below. My issue is that when I try to plot my aggregated dataframe it keeps overlapping some of the slice labels and is making it look cluttered and unreadable.
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")