Seaborn provides an API on top of Matplotlib that offers sane choices for plot style and color defaults, defines simple high-level functions for common statistical plot types, and integrates with the functionality provided by Pandas.By convention, Seaborn is often imported as sns# In[1]%matplotlib inlineimport matplotlib.pyplot as pltimport seaborn as snsimport numpy as npimport pandas as pdsns...