from pylab import rcParams
rcParams['figure.figsize'] = (10, 10)
This works fine for histogram plots but not for factor plots. sns.factorplot (.....) still shows the default size.
sns.factorplot('Pclass','Survived',hue='person',data = titanic_df,size = 6,aspect =1)
I have to specify size,aspect everytime.
Please suggest something that works for both of them globally.