Answers for "matplotlib change font size of ytick"

10

matplotlib set size

plt.figure(figsize=(20,8))
Posted by: Guest on April-02-2020
1

change matplotlib fontsize

font = {'family' : 'normal',
        'weight' : 'bold',
        'size'   : 22}

matplotlib.rc('font', **font)
Posted by: Guest on April-02-2020

Code answers related to "matplotlib change font size of ytick"

Python Answers by Framework

Browse Popular Code Answers by Language