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")
../../_images/original.beaver.2011-10.png

Color name list

Color name list is available at this site.