I am trying to use matplotlib.ArtistAnimation to animate two subplots. I want the x-axis to increase in value as the animation progresses, such that the total l
matplotlib.ArtistAnimation
If you are using blitting, you can call pyplot.draw() to redraw the entire figure, each time you change y/x axis.
pyplot.draw()
This updates whole figure, so is relatively slow, but it's acceptable if you don't call it many items.