TraumaPony
TraumaPony

Reputation: 10794

Are there any graph/plotting/anything-like-that libraries for Python 3.0?

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.

Upvotes: 3

Views: 1584

Answers (5)

Jouni K. Seppänen
Jouni K. Seppänen

Reputation: 44118

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

Upvotes: 0

justquick
justquick

Reputation:

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

Upvotes: 1

Kurt Pattyn
Kurt Pattyn

Reputation: 2788

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

Upvotes: 1

bortzmeyer
bortzmeyer

Reputation: 35459

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

Upvotes: 0

S.Lott
S.Lott

Reputation: 391818

Have you looked at the Google Chart Wrapper?

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

Upvotes: 0

Related Questions