plot show size code example
Example 1: change plot size matplotlib python
plt.figure(figsize=(14,7))
Example 2: plot size
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
plt.figure(figsize=(14,7))
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')