1 | initial version |
This works :
frames = [plot(cos(x^k), (-2, 2), ymin=-1, ymax=1) for k in range(1,7)]
a = animate(frames)
a.apng(savefile='ex2.png', show_path=True)
The point is to force min and max ordinates, forting all the frames to have the saem height.
HTH,