In this code below each subplot gets added to next row, How can I change the ordering to follow columns?
for i in range(1,20):
plt.subplot(10,2,i)
...
In this code below each subplot gets added to next row, How can I change the ordering to follow columns?
for i in range(1,20):
plt.subplot(10,2,i)
...