how to make a matplotlib plot bigger code example
Example 1: increase figure size in matplotlib
plt.figure(figsize=(20,10))
Example 2: figsize param in pandas plot
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
Example 3: matplotlib make bigger sublots
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})