Re: Automated Graph Plotting in Python

2006-04-10 Thread Neal Becker
Felipe Almeida Lessa wrote: > Em Sáb, 2006-04-08 às 20:08 -0700, [EMAIL PROTECTED] escreveu: >> My python program spits lot of data. I take that data and plot graphs >> using OfficeOrg spredsheet. I want to automate this task as this takes >> so much of time. I have some questions. > > You can tr

Re: Automated Graph Plotting in Python

2006-04-10 Thread WEINHANDL Herbert
[EMAIL PROTECTED] schrieb: > My python program spits lot of data. I take that data and plot graphs > using OfficeOrg spredsheet. I want to automate this task as this takes > so much of time. I have some questions. > > 1. Which is the best graph plotting utility in python or linux. Can I > write a c

Re: Automated Graph Plotting in Python

2006-04-10 Thread per9000
Dear shrub-makers, if you are want to plot networks (fx. genetic networks) I can recommend Cytoscape: http://cytoscape.org/ (some kind of openware). The in-syntax is clean: node1 linktype1 node2 node2 linktype1 node3 node3 linktype2 node1 etc. But in general you are going to want to change the l

Re: Automated Graph Plotting in Python

2006-04-09 Thread Alexander Schmolck
[EMAIL PROTECTED] writes: > 1. Which is the best graph plotting utility in python or linux. matplotlib (provided it does the type of graphs you need, which is likely) 'as -- http://mail.python.org/mailman/listinfo/python-list

Re: Automated Graph Plotting in Python

2006-04-09 Thread Kent Johnson
[EMAIL PROTECTED] wrote: > My python program spits lot of data. I take that data and plot graphs > using OfficeOrg spredsheet. I want to automate this task as this takes > so much of time. I have some questions. > > 1. Which is the best graph plotting utility in python or linux. Can I > write a co

Re: Automated Graph Plotting in Python

2006-04-09 Thread Paddy
Hi, I saw you mentioned gnuplot and did a search on Google of 'gnuplot python-wrapper' which lead me eventually to: http://gnuplot-py.sourceforge.net/ I have not tried it, but if you would try it and report back if it works that might help someone else too. - Cheerio, Paddy. -- http://mail.py

Re: Automated Graph Plotting in Python

2006-04-08 Thread Felipe Almeida Lessa
Em Sáb, 2006-04-08 às 20:08 -0700, [EMAIL PROTECTED] escreveu: > My python program spits lot of data. I take that data and plot graphs > using OfficeOrg spredsheet. I want to automate this task as this takes > so much of time. I have some questions. You can try ReportLab (www.reportlab.org). Great