How to modify the font size of axes in Python matplotlib.pyplot

-1

Good afternoon. I would like to know how I can increase the font on the axes when I generate a chart using matplotlib.pyplot.

    
asked by anonymous 28.02.2018 / 20:48

1 answer

-1
plt.rcParams['xtick.labelsize'] = 16
plt.rcParams['ytick.labelsize'] = 16
    
02.09.2018 / 21:51