I\'m having trouble increasing the size of my plot figures using Seaborn (imported as sns). I\'m using sns.pairplot to plot columns of a data frame
sns
sns.pairplot
sns.pairplot "Returns the underlying PairGrid instance for further tweaking" ...for instance changing the figure size:
g=sns.pairplot(df, kind='reg', x_vars=columns,y_vars = ['Column 1']) g.fig.set_size_inches(15,15)