Try matplotlib in Python for plotting. from matplotlib.pylab import plot, show x = [1,2,3,4,5] y = [1,4,9,16,25] plot(x,y) show()
Here x and y are two lists. You can go through the matplotlib documentation for more information. To install matplotlib in Ubuntu/Debian type, apt-get install python-matplotlib Use either Python interpreter or IPython interpreter to try out the code. Python can read data from files, from streams etc. So it gives you the power to play with your data. -- Anoop Jacob Thomas http://anoop.caremedia.org -- "Freedom is the only law". "Freedom Unplugged" http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups "ilug-tvm" group. To control your subscription visit http://groups.google.co.in/group/ilug-tvm/subscribe To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For details visit the google group page: http://groups.google.com/group/ilug-tvm?hl=en
