Re: graphs

2016-01-09 Thread Sven R. Kunze
Hi Saski, Python's dataset processing machine is *pandas*. Have a look at this cookbook entry here: http://nbviewer.ipython.org/github/jvns/pandas-cookbook/blob/v0.1/cookbook/Chapter%204%20-%20Find%20out%20on%20which%20weekday%20people%20bike%20the%20most%20with%20groupby%20and%20aggregate.ipyn

Re: graphs

2016-01-08 Thread Oscar Benjamin
On 7 January 2016 at 15:36, Saini, Sakshi wrote: > I have a complex dataset and I wish to write a code to create different > graphs from it. I was wondering if it is possible for Python/ matplotlib/ > seaborn to return a cumulative or mean distribution bar graph based on values > in your datas

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

Re: Graphs, bar charts, etc

2007-02-07 Thread Sean Davis
On Feb 6, 7:57 am, Jan Danielsson <[EMAIL PROTECTED]> wrote: > Hello all, > >I have some data in a postgresql table which I view through a web > interface (the web interface is written in python -- using mod_python > under apache 2.2). Now I would like to represent this data as graphs, > bar ch

Re: Graphs, bar charts, etc

2007-02-07 Thread [EMAIL PROTECTED]
On Feb 7, 4:46 am, "Joshua J. Kugler" <[EMAIL PROTECTED]> wrote: > Jan Danielsson wrote: > > Hello all, > > >I have some data in a postgresql table which I view through a web > > interface (the web interface is written in python -- using mod_python > > under apache 2.2). Now I would like to rep

Re: Graphs, bar charts, etc

2007-02-06 Thread Joshua J. Kugler
Jan Danielsson wrote: > Hello all, > >I have some data in a postgresql table which I view through a web > interface (the web interface is written in python -- using mod_python > under apache 2.2). Now I would like to represent this data as graphs, > bar charts, etc. > >I know about matpl

Re: Graphs, bar charts, etc

2007-02-06 Thread dimitri pater
Hi, check out chartdirector : http://www.advsofteng.com/ it's not free, but very easy to use right now I am testing it here: http://www.serpia.org/water a very simple barchart regards, Dimitri On 2/6/07, Jan Danielsson <[EMAIL PROTECTED]> wrote: Hello all, I have some data in a postgresql

Re: Graphs, bar charts, etc

2007-02-06 Thread Jussi Salmela
Jan Danielsson kirjoitti: > Hello all, > >I have some data in a postgresql table which I view through a web > interface (the web interface is written in python -- using mod_python > under apache 2.2). Now I would like to represent this data as graphs, > bar charts, etc. > >I know about ma

Re: graphs and charts

2006-05-24 Thread Bryan
Terry Hancock wrote: > Yaron Butterfield wrote: >> What's the best way to on-the-fly graphs and charts using Python? Or >> is Python not really the best way to do this? > > I quite enjoyed using Biggles for this: > > http://biggles.sf.net > > There are many different choices, though. > > Chee

Re: graphs and charts

2006-05-23 Thread Terry Hancock
Yaron Butterfield wrote: > What's the best way to on-the-fly graphs and charts using Python? Or > is Python not really the best way to do this? I quite enjoyed using Biggles for this: http://biggles.sf.net There are many different choices, though. Cheers, Terry -- Terry Hancock ([EMAIL PROT

Re: graphs and charts

2006-05-23 Thread Tim Heaney
Grant Edwards <[EMAIL PROTECTED]> writes: > > On 2006-05-23, Yaron Butterfield <[EMAIL PROTECTED]> wrote: > >> What's the best way to on-the-fly graphs and charts using Python? Or is >> Python not really the best way to do this? > > I like Gnuplot-py, but I've been a Gnuplot for 15+ years, so > I

Re: graphs and charts

2006-05-23 Thread Grant Edwards
On 2006-05-23, Yaron Butterfield <[EMAIL PROTECTED]> wrote: > What's the best way to on-the-fly graphs and charts using Python? Or is > Python not really the best way to do this? I like Gnuplot-py, but I've been a Gnuplot for 15+ years, so I'm biased. http://gnuplot-py.sourceforge.net/ -- Gr

Re: Graphs from Python

2006-03-28 Thread Philippe Bouige
In article <[EMAIL PROTECTED]>, DurumDara wrote: >Hi ! > >I want to create graphs (edges, nodes) from python. NetworkX https://networkx.lanl.gov/ Philippe -- http://mail.python.org/mailman/listinfo/python-list

Re: Graphs from Python

2006-03-28 Thread [EMAIL PROTECTED]
Metapost: http://cm.bell-labs.com/who/hobby/MetaPost.html Examples: http://tex.loria.fr/prod-graph/zoonekynd/metapost/metapost.html ImageMagick: http://www.imagemagick.org/script/index.php Metapost presupposes you know TeX/LaTeX. If you need help in converting metapost output to eps or pdf, let me

Re: Graphs/statistics using wxPython

2005-06-29 Thread Will McGugan
Jan Danielsson wrote: Hello all, I wanted to plot some statistics, so I wrote a simple wxPython class to do it. Then I realized that I would like to draw bar graphs, so I added that too. Since I'm a complete Python newbie, I haven't done much of it the "Python way", I suspect. So, I'm won

Re: Graphs/statistics using wxPython

2005-06-29 Thread Robert Kern
Jan Danielsson wrote: >So, for future reference: I should *never* mix x and y versions in > verion: x.y.z. I've wondered why there are versions of libraries for > different versions of Python.. For packages with extension modules at least. Python maintains binary compatibility between micro-

Re: Graphs/statistics using wxPython

2005-06-29 Thread Jan Danielsson
Robert Kern wrote: >> [---] >> >>> It's okay. Just about every Pythonista in the sciences has, at one time >>> or another, started a plotting library. It's a rite of passage. Welcome >>> to the club. :-) >> >> >>Question: I need to install SciPy in order to use matplotlib, > > No you don't.

Re: Graphs/statistics using wxPython

2005-06-29 Thread Robert Kern
Jan Danielsson wrote: > Robert Kern wrote: > [---] > >>It's okay. Just about every Pythonista in the sciences has, at one time >>or another, started a plotting library. It's a rite of passage. Welcome >>to the club. :-) > >Question: I need to install SciPy in order to use matplotlib, No you

Re: Graphs/statistics using wxPython

2005-06-29 Thread Jan Danielsson
Robert Kern wrote: [---] > It's okay. Just about every Pythonista in the sciences has, at one time > or another, started a plotting library. It's a rite of passage. Welcome > to the club. :-) Question: I need to install SciPy in order to use matplotlib, but on the download page I see that ther

Re: Graphs/statistics using wxPython

2005-06-29 Thread Robert Kern
Jan Danielsson wrote: > Robert Kern wrote: >>Trick #1: >> >>import matplotlib > > Oh. :-) > > That's a pretty neat trick -- now can you make my embarrassment go away? > >I did do a quick search to see if anyone had done anything similar; > but I guess I wasn't using the right keywords. > >

Re: Graphs/statistics using wxPython

2005-06-29 Thread Jan Danielsson
Robert Kern wrote: >>I wanted to plot some statistics, so I wrote a simple wxPython class >> to do it. Then I realized that I would like to draw bar graphs, so I >> added that too. >> >>Since I'm a complete Python newbie, I haven't done much of it the >> "Python way", I suspect. So, I'm won

Re: Graphs/statistics using wxPython

2005-06-29 Thread Robert Kern
Jan Danielsson wrote: > Hello all, > >I wanted to plot some statistics, so I wrote a simple wxPython class > to do it. Then I realized that I would like to draw bar graphs, so I > added that too. > >Since I'm a complete Python newbie, I haven't done much of it the > "Python way", I suspec