Visualization tips
Change plot background color
By changing the background color of the plot, you may be able to effectively emphasize the graph on slides at the presentation. One suggestion is to use the following command:
fig, ax = plt.subplots()
# Add the following command to change plot background color
ax.set_facecolor("lightcyan")