Re: Graph Theory

2006-10-06 Thread boggom
Other than reading the reference on the website https://networkx.lanl.gov/reference/networkx/ you can read the code (eg by browsing the svn by pointing your web browser at https://networkx.lanl.gov/browser/networkx/trunk and then look at networkx -> generators -> random_graphs.py) If you are not

Re: Graph Theory

2006-10-06 Thread bearophileHUGS
[EMAIL PROTECTED]: > Is there any documentation avaialbe for networkx ? I want to have an > implementation of random graphs including watts and strogatz graph. Try reading the code, often it's simple enough. Bye, bearophile -- http://mail.python.org/mailman/listinfo/python-list

Re: Graph Theory

2006-10-06 Thread diffuser78
ring if you can generate random graph and analyze some > > peroperties of it like clustering coefficient or graph density. I am a > > graph theory student and want to use python for development. Somebody > > told me that Python has already so much bultin. Are there any > > vi

Re: Graph Theory

2006-10-06 Thread diffuser78
Thanks for all your responses. -- http://mail.python.org/mailman/listinfo/python-list

Re: Graph Theory

2006-10-05 Thread James Stroud
[EMAIL PROTECTED] wrote: > Is there any library in Python which has implementation of graph > theoretic algorithms and models ? > I don't know much about graph theory, but a coworker who does a lot of it mentioned something about boost: http://www.boost.org/libs/graph/d

Re: Graph Theory

2006-10-05 Thread boggom
[EMAIL PROTECTED] wrote: > Thanks for your quick reply. Since I have not read the documentation, I > was wondering if you can generate random graph and analyze some > peroperties of it like clustering coefficient or graph density. I am a > graph theory student and want to us

Re: Graph Theory

2006-10-05 Thread bearophileHUGS
easy (Then if you want you can send them back to be added to that lib, if they are nice). Note that if you want to manage a LOT of nodes/arcs you can use Boost Graph with Python. > I am a graph theory student and want to use python for development. It can be useful for small and mediu

Re: Graph Theory

2006-10-05 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: > Are there any visualization tool which would depict the random graph > generated by the libraries. Google for DOT (.DOT format w/ renders to a variety of output formats). -- --Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-li

Re: Graph Theory

2006-10-05 Thread diffuser78
Thanks for your quick reply. Since I have not read the documentation, I was wondering if you can generate random graph and analyze some peroperties of it like clustering coefficient or graph density. I am a graph theory student and want to use python for development. Somebody told me that Python

Re: Graph Theory

2006-10-05 Thread bearophileHUGS
[EMAIL PROTECTED]: > Is there any library in Python which has implementation of graph > theoretic algorithms and models ? There are many of them, like: https://networkx.lanl.gov/ Mine: http://sourceforge.net/projects/pynetwork/ ...and some other. Bye, bearophile -- http://mail.python.org/mailma

Graph Theory

2006-10-05 Thread diffuser78
Is there any library in Python which has implementation of graph theoretic algorithms and models ? -- http://mail.python.org/mailman/listinfo/python-list