figure text size plt subplots code example
Example 1: plt subplots figsize
fig, ax = plt.subplots(10,4, figsize=(16,40))
Example 2: matplotlib make bigger sublots
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})
fig, ax = plt.subplots(10,4, figsize=(16,40))
f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]})