vote up 1 vote down star
1

Hi,

Can someone please suggest to me any python library to plot graph like

http://www.google.com/finance/images/retail%5Fq%5Findex.png

Thank you.

flag

21% accept rate

4 Answers

vote up 8 vote down

matplotlib is classic. We've been using it for at least the last 5 years. It is actively supported and about to hit 1.0

this one shows time series plots

link|flag
1  
I second that, not only can you dynamically see the plot and change its parameters, but it also allows you to generate PDF reports and many other formats. Many plot types are available, too. – RedGlyph Oct 20 at 19:15
+1 for matplotlib. I've used it. It works. – Nate Oct 20 at 19:48
vote up -2 vote down

Try python-graph http://code.google.com/p/python-graph/

link|flag
1  
There are graphs, and there are graphs. You obviously didn't take the time required to at least understand the question before you jumped to answer. Don't do that. – eliben Oct 20 at 19:33
Yes you are right. I missed the "plot" part. Sorry – bugspy.net Oct 20 at 20:18
vote up 0 vote down

gnuplot is pretty good
Here are some samples

link|flag
vote up 0 vote down

Python Google Chart

>>> from pygooglechart import SparkLineChart as Chart
>>> chart = Chart(400, 300)
>>> import random
>>> chart.add_data([random.randrange(100) for _ in xrange(40)])
0
>>> chart.download('line-sparkline.png')
>>> import webbrowser
>>> webbrowser.open('line-sparkline.png')
True

Take a look at other examples.

link|flag

Your Answer

Get an OpenID
or

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