pyplot image size code example
Example 1: increase figure size in matplotlib
plt.figure(figsize=(20,10))
Example 2: matplotlib set size
plt.figure(figsize=(20,8))
Example 3: matplotlib.pyplot imshow size
from matplotlib import pyplot as plt
plt.figure(figsize = (20,2))
plt.imshow(random.rand(8, 90), interpolation='nearest')
Example 4: plot size
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')