Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

7 Answers

up vote 9 down vote accepted

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

share|improve this answer

There is a list of Python-based plotting tools on the Python wiki.

share|improve this answer

I have used Gnuplot.py with great success.

share|improve this answer

You can use simple gplot

share|improve this answer
pyla-gplot is a small stand alone single python script works with python 3 and above and Gnu plot. – atronoush Sep 8 '10 at 10:30
to get gplot from pyla visit pyla.codeplex.com; It needs Python 3 and Gnuplot 4.0 and above. Gnuplot.py by this date is not compatible with Python 3.x – atronoush Sep 8 '10 at 10:32

MathGL is free (GPL) plotting library with large set of graphics types, and have Python interface too (also can use numpy arrays).

share|improve this answer

I was in need of gnuplot interface for Python 3 but have found nothing. So I have ported Gnuplot.py to it. See more info in the 'readme' of the [repository]. Hope this will help someone else in future.

share|improve this answer

plotly (https://plot.ly/) lets you make graphs using their online Python sandbox. Their gallery has some example scientific graphs with the Python scripts that generated them - https://plot.ly/gallery

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.