matplotlib label size code example
Example 1: label size matplotlib
plt.xlabel("Time (s)", fontsize = 40)
Example 2: matplotlib change text size
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
plt.xlabel("Time (s)", fontsize = 40)
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})