I am using the following code to make a seaborn countplot:
sns.countplot(y="YearBuilt", data=df_bin)
This makes a perfectly normal countplot. The problem is, when I try making multiple subplots, the font size becomes too small, so I have to change it using this line of code:
plt.rcParams.update({'font.size': 37})
It works fine, but then every time I want to make just one plot, the fontsize is way too big, so I have to change it again. I can use this code to make the font size bigger for each plot manually:
plt.xlabel("count", size=37)
plt.ylabel("YearBuilt", size=37)
Is there no other way to change the font size of each plot, because one of the default labels for seaborn countplots is "count", so I don't think it really makes sense to reassign it just to change the fontsize. And even if I do this, the xticks and yticks are still too small.