I have plot like below using below code, nevertheless how can I increase fontsize of axis and labels on this plot ? It is small and therefore unreadable.
sns.set(font_scale=1)
does not work
sns.factorplot(data = data,
x = 'Month',
y = "Sales",
col = 'StoreType',
palette = 'plasma',
hue = 'StoreType',
row = 'Promo')
#sns.set(font_scale=1)
plt.show()