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.
|
You can always use the object-oriented framework for Matplotlib instead of the pylab interface. |
||||
|
|
|
There is a list of Python-based plotting tools on the Python wiki. |
|||
|
|
|
I have used Gnuplot.py with great success. |
||||
|
|
|
You can use simple gplot |
|||||
|
|
MathGL is free (GPL) plotting library with large set of graphics types, and have Python interface too (also can use numpy arrays). |
||||
|
|
|
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. |
||||
|
|
|
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 |
||||
|
|