Jupyter Notebook Matplotlib Settings

Plot sizes are always small and low res. Put these settings at the top of your notebook to fix that.

import matplotlib
matplotlib.rcParams['figure.figsize'] = (13,8)
%config InlineBackend.figure_format = 'retina'