About Lesson
Pandas’ default plots can be customized using Matplotlib features.
# Customizing a line plot
ax = df.plot(x='Month', y='Sales', kind='line', title='Monthly Sales', marker='o', color='blue', linestyle='--')
ax.set_xlabel('Month')
ax.set_ylabel('Sales Amount')
plt.grid(True) # Add grid lines
plt.show()