How can one create animated diagrams using popular matplotlib library? I am particularly interested in animated gifs.
+3
A:
The matplotlib docs provide an entire section of examples on animation (see this scipy tutorial also). Most, however, involve using the various GUI widget backends. There is one in there, "movie demo", that shows how to produce an avi of a series of PNGS.
To produce animated GIFs, I think your options are pretty limited. Last I checked, PIL didn't support them. You could however generate a series of PNGs using pyplot's savefig and then stitch them together using a call ImageMagick or mencoder.
Mark
2010-03-30 18:28:02