axis size increase in matplotlib code example
Example 1: increase figure size in matplotlib
plt.figure(figsize=(20,10))
Example 2: axis number size matplotlib
ax.tick_params(axis="x", labelsize=8)
ax.tick_params(axis="y", labelsize=20)
plt.figure(figsize=(20,10))
ax.tick_params(axis="x", labelsize=8)
ax.tick_params(axis="y", labelsize=20)