imshow size matplotlib subplot code example
Example 1: matplotlib subplots size
f, axs = plt.subplots(2,2,figsize=(15,15))
Example 2: matplotlib.pyplot imshow size
from matplotlib import pyplot as plt
plt.figure(figsize = (20,2))
plt.imshow(random.rand(8, 90), interpolation='nearest')