I have a loop that generates 15 images. I created a subplot(5,3):
fig, axes = plt.subplots(5,3)
for i in range(28,43):
(...).plot(..., ax=axes[?,?])
I would like that the images appears in sequence: axes[0,0], axes[0,1], axes[0,2], axes[1,0]...
Which argument should I put on axes?
Or is it necessary to create another loop inside the actual?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…