pyplot subplot change size code example
Example 1: increase figure size in matplotlib
plt.figure(figsize=(20,10))
Example 2: matplotlib change text size
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
plt.figure(figsize=(20,10))
import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})