Do you know how to reduce the space between these plots?
fig, axs = plt.subplots(2)
axs[0].imshow(np.random.randint(0,15,size=(70,714)))
axs[1].imshow(np.random.randint(0,15,size=(70,714)))
plt.show()
I´m expected to generate the plots with only a small distance between them.

You can use
fig.tight_layoutand adjust the height padding (h_pad) parameter as needed. For example: