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.
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.
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
>>> 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.