views:

599

answers:

6

Hi everybody,

I'm pretty new on python and I'm looking for a good graphics module, especially to draw histograms, pie charts and stuff like that. What would you recommend to me ?

+5  A: 
vartec
+1  A: 

PyCha is pretty straightforward if you're just after the basic chart types.

dommer
+11  A: 

matplotlib is the standard for scientific data plotting. you can check out the gallery and see if it's the sort of stuff you're looking for.

Autoplectic
ahh beat me by seconds :-D I even had a link tot he gallery like you..
Dan
A: 

The best out there is imoo matplotlib but wx has also a simple plot module if that's what you're using as a GUI.

attwad
+1  A: 

I have never use this but there is python interface to gnuplot.

http://gnuplot-py.sourceforge.net/

Tg
A: 

For completeness, if you want to simply manipulate images, you can use the Python Imaging Library (PIL).

Benson