Automated Graph Plotting in Python

WEINHANDL Herbert weinhand at unileoben.ac.at
Mon Apr 10 08:17:18 EDT 2006


diffuser78 at gmail.com 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 code in such a way that my python code automatically gives me a
> graph. I know little about gnuplot. If you know any better tool without
> much learning curve please tell me in Linux.

if you want to plot graphs :

use pydot the wrapper for graphviz
      http://dkbza.org/pydot.html
      http://www.research.att.com/sw/tools/graphviz/

if you want to plot datas (2d) :
matplotlib
      http://sourceforge.net/projects/matplotlib
or (2d/3d) dislin (=a plotting library with a python-wrapper)
      http://www.dislin.de/

> 2. I want to write a script such that my python code writes to a file,
> some graph utility like gnuplot takes that data from the file and I get
> my graph ready made. Do you think its possible ?
> 
> Any feedback regarding above is appreciated.
> 
> Thanks
> 

happy pythoning

Herbert



More information about the Python-list mailing list