Re: I need help with graphs in python (2.7.3.1)

2012-12-18 Thread Terry Reedy
On 12/18/2012 6:29 AM, hevymet...@gmail.com wrote: Hi there, I hope that there is someone willing to help me out, I need to generate a graph in Python 2.7.3.1, There is only 2.7.3, no 2.7.3.1, at least not officially. I had to make a .CSV file from my Windows system logs (already did that), a

Re: I need help with graphs in python (2.7.3.1)

2012-12-18 Thread Thomas Bach
Hi, Most of the tasks you have to do can be achieved quite easily with the standard library (except the plotting). On Tue, Dec 18, 2012 at 03:29:49AM -0800, hevymet...@gmail.com wrote: > These are some steps I need to do first before creating the graph: > - Get the name of a CSV file from an ini

I need help with graphs in python (2.7.3.1)

2012-12-18 Thread hevymetl07
Hi there, I hope that there is someone willing to help me out, I need to generate a graph in Python 2.7.3.1, but I am not that skilled with Python and I am completely stuck :( I had to make a .CSV file from my Windows system logs (already did that), and the following steps must bw written in th

graphs in Python during debugging

2010-05-11 Thread Sandy Sandy
Hi friends Can you help pls to find how to plot graphs in Python during debugging without destroying figures to continue to debug the mutter is: during debugging the debug processes stacks when fig is created for example, in code import random import matplotlib.pyplot as plt from pylab

Re: Graphs in Python

2008-04-11 Thread George Sakkis
.org, where can I > find more in depth info about how to express graphs in > python, and how to use them in a  code? > > Also, does anyone know of a easy way of creating the > dictionary for python for a 500-node graph, without > typing each and every node? I found some application

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
h manipulation. My graphs are > about 200-500 nodes big. Excepting for the short basic > graph implementation info on Python.org, where can I > find more in depth info about how to express graphs in > python, and how to use them in a code? > > Also, does anyone know of a easy w

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/

Re: Graphs in Python

2008-04-10 Thread Sanhita Mallick
wbie 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 more in depth info about how to expres

Re: Graphs in Python

2008-04-10 Thread Matthieu Brucher
ting for the short basic > graph implementation info on Python.org, where can I > find more in depth info about how to express graphs in > python, and how to use them in a code? > > Also, does anyone know of a easy way of creating the > dictionary for python for a 500-node graph, wit

Graphs in Python

2008-04-10 Thread Sanhita Mallick
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 more in depth info about how to express graphs in python, and how to use them