Re: Graphs in Python

2008-04-11 Thread George Sakkis
On Apr 10, 1:05 pm, Sanhita Mallick <[EMAIL PROTECTED]> wrote: > Hi. > > I am a newbie to Python. I am trying to implement a > Python code for graph manipulation. My graphs are > about 200-500 nodes big. Excepting for the short basic > graph implementation info on Python.org, where can I > find mor

Re: Graphs in Python

2008-04-11 Thread Robert Kern
Henry Chang wrote: > Try Google Chart with python wrapper: > > http://pygooglechart.slowchop.com/ > > http://code.google.com/apis/chart/ Wrong kind of graph. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad atte

Re: Graphs in Python

2008-04-11 Thread Henry Chang
Try Google Chart with python wrapper: http://pygooglechart.slowchop.com/ http://code.google.com/apis/chart/ On Thu, Apr 10, 2008 at 10:05 AM, Sanhita Mallick <[EMAIL PROTECTED]> wrote: > Hi. > > I am a newbie to Python. I am trying to implement a > Python code for graph manipulation. My graphs

Re: Graphs in Python

2008-04-11 Thread Philipp Pagel
greg_kr <[EMAIL PROTECTED]> wrote: > You should use Python with R. Google for Rpy, this is the best > Graphing you can do with Python The OP was refering to graph as in 'graph-theory', not plotting data. Of course, R has some packages for dealing with graphs in the former sense but I don't think t

Re: Graphs in Python

2008-04-11 Thread greg_kr
You should use Python with R. Google for Rpy, this is the best Graphing you can do with Python On Apr 11, 7:40 am, Philipp Pagel <[EMAIL PROTECTED]> wrote: > Sanhita Mallick <[EMAIL PROTECTED]> wrote: > > I have looked at that, and other similar ones all of > > which are based on Graphviz. > > Net

Re: Graphs in Python

2008-04-11 Thread Philipp Pagel
Sanhita Mallick <[EMAIL PROTECTED]> wrote: > I have looked at that, and other similar ones all of > which are based on Graphviz. Networkx is not based on graphviz. > My problem is that I myself am creating some large graphs [...] > So I would like to use a graphical/visual method than typing out

Re: Graphs in Python

2008-04-10 Thread bearophileHUGS
Sanhita Mallick>where can I find more in depth info about how to express graphs in python, and how to use them in a code?< You can look here: https://networkx.lanl.gov/wiki My version: http://sourceforge.net/projects/pynetwork/ Bye, bearophile -- http://mail.python.org/mailman/listinfo/python-l

Re: Graphs in Python

2008-04-10 Thread Sanhita Mallick
Hi Matthieu. I have looked at that, and other similar ones all of which are based on Graphviz. My problem is that I myself am creating some large graphs,contrary to an already created network, say, a social network of python-list or my-space, downloaded from somewhere as indicated in some of the

Re: Graphs in Python

2008-04-10 Thread Matthieu Brucher
Hi, Did you try packages dedicated to graphs, like NetworkX ? Matthieu 2008/4/10, Sanhita Mallick <[EMAIL PROTECTED]>: > > Hi. > > I am a newbie to Python. I am trying to implement a > Python code for graph manipulation. My graphs are > about 200-500 nodes big. Excepting for the short basic > gr