About Lesson
Pie charts are useful for showing proportions.
# Pie chart of Sales
df.set_index('Month')['Sales'].plot(kind='pie', title='Sales by Month', autopct='%1.1f%%', figsize=(6, 6))
plt.ylabel('') # Remove y-axis label for aesthetics
plt.show()