Python plotting libraries

Viewed 68421

What alternatives are there to pylab for plotting in Python? In particular, I'm looking for something that doesn't use the stateful model that pylab does.

8 Answers

You can always use the object-oriented framework for Matplotlib instead of the pylab interface.

Related