I want to create a barplot from pandas. But I want to change fontsize for x and y-axis separately.
This code:
max_coef.plot.bar(fontsize = 15, x = 'coef_word', y = 'coefficient', color=['yellow'])
Creates this plot:
I tried to play around with xticks and xticklabels, but apparently this does not work similar to matplotlib syntax. I already checked documentation but I cannot wrap my head around it.
I want to change x and y ticks separately. Please help. + Thanks in advance!

