plt.plot label size code example
Example 1: matplotlib change text size
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
Example 2: change matplotlib fontsize
font = {'family' : 'normal',
'weight' : 'bold',
'size' : 22}
matplotlib.rc('font', **font)