matplotlib figure size subplots code example
Example 1: matplotlib subplots size
f, axs = plt.subplots(2,2,figsize=(15,15))
Example 2: matplotlib make bigger sublots
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})
f, axs = plt.subplots(2,2,figsize=(15,15))
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})