How can I resize the seaborn plot in my jupyter notebook?
Pls try this out:
matplotlib.rcParams['figure.figsize'] = (<x>, <y>)
Substitute those angle brackets with values.
Update: Alternatively, you can use this: plt.figure(figsize=(<x>, <y>))
2 Likes