As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.

link|improve this question

52% accept rate
feedback

6 Answers

Maybe you can use Python Imaging Library (PIL). Also have a look at PyX, but this library is meant to output to PDF, ...

link|improve this answer
feedback

The GChartWrapper (http://pypi.python.org/pypi/GChartWrapper/0.7) does work for py3k

link|improve this answer
feedback

I'm sure I'll get modded down for this but, why do you need to use python 3 to make a graph?

link|improve this answer
Because the program that creates the data is written in Python 3? – TraumaPony Jan 7 '09 at 1:15
If you can run 2.6 on the same platform, then you can do the graphing in 2.6 from data generated in 3.0. – S.Lott Jan 7 '09 at 1:23
@S.Lott: Yeah, I'm looking into that too. I think that's what I'm going to have to end up doing. – TraumaPony Jan 7 '09 at 1:26
feedback

Have you looked at the Google Chart Wrapper?

http://pypi.python.org/pypi/GChartWrapper/0.7

link|improve this answer
Sorry, should have said that it wasn't for a website. I've still bookmarked it though, it looks quite good. – TraumaPony Jan 7 '09 at 1:25
But you have the option to download the image. It may not be for a website, but if you have internet access, Google Chart still works. – James Brady Jan 7 '09 at 9:09
feedback

I would call Gnuplot from Python. No need to reinvent the wheel in Python, Gnuplot is already there and already has a Python interface.

link|improve this answer
It requires NumPy, which isn't 3.0 compatible. – TraumaPony Jan 7 '09 at 10:56
you can pipe shell commands to Gnuplot from Python and pass it a data file. So it would be possible without Numpy (though uglier) – Corey Goldberg Feb 20 '09 at 14:10
1  
Actually, numpy has been 3.0 compatible for quite awhile now. – Joe Kington Jan 25 '11 at 20:43
feedback

The current development version of matplotlib should work on Python 3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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