Notebook Seaborn Display Size PairPlot

# notebook seaborn display size pairplot
p = sns.pairplot(df)
p.fig.set_figwidth(20)
Tirbo06