sns lineplot set figsize code example
Example 1: seaborn expand plot to full width jupyter notebook
plt.rcParams['figure.figsize'] = [width, height]
Example 2: seaborn line chart set fig size
from matplotlib import pyplot
import seaborn
import mylib
a4_dims = (11.7, 8.27)
df = mylib.load_data()
fig, ax = pyplot.subplots(figsize=a4_dims)
seaborn.violinplot(ax=ax, data=df, **violin_options)