We will start by setting up the notebook for plotting and importing the packages we will use # In[1]%matplotlib inlineimport matplotlib.pyplot as pltplt.style.use('seaborn-whitegrid')import numpy as npFor all Matplotlib plots, we start by creating a figure and axes.# In[2]fig=plt.figure()ax=plt.axes()In Matplotlib, the figure can be thought of as a single container that contains all the objects..