how to increase the size of sns plot code example
Example 1: seaborn figure size
plt.figure(figsize=(20,10))
Example 2: seaborn expand plot to full width jupyter notebook
plt.rcParams['figure.figsize'] = [width, height]
plt.figure(figsize=(20,10))
plt.rcParams['figure.figsize'] = [width, height]