Answers for "how to increase font size in plt.bar"

2

matplotlib text too small

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
Posted by: Guest on April-27-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 "how to increase font size in plt.bar"

Python Answers by Framework

Browse Popular Code Answers by Language