Re: matplotlib graph white space

2021-10-06 Thread Thomas Jollans
On 04/10/2021 10:39, Steve wrote: I am using the first bar graph listed at this site: https://matplotlib.org/stable/gallery/index.html The problem I have is that there is too much white space around the graph. My data would be better displayed if I could widen the graph into the space to the

Re: matplotlib graph white space

2021-10-05 Thread Michel Alwan
t; -Original Message- > From: Michel Alwan > Sent: Monday, October 4, 2021 7:56 AM > To: Steve > Cc: python-list@python.org > Subject: Re: matplotlib graph white space > > In the plot window, you can click on the settings (up), and select the > option "tight layout

Re: matplotlib graph white space

2021-10-05 Thread Michel Alwan
In the plot window, you can click on the settings (up), and select the option "tight layout" by pressing that button... I think this is what you are looking for... On 21/10/04 04:39AM, Steve wrote: > > I am using the first bar graph listed at this site: > https://matplotlib

RE: matplotlib graph white space

2021-10-04 Thread Steve
Yes, I saw that but it is a change for all sides. Is there a setting to change just the left and right padding? -Original Message- From: Michel Alwan Sent: Monday, October 4, 2021 7:56 AM To: Steve Cc: python-list@python.org Subject: Re: matplotlib graph white space In the plot

Re: matplotlib graph white space

2021-10-04 Thread David Lowry-Duda
> I am using the first bar graph listed at this site: > https://matplotlib.org/stable/gallery/index.html > > The problem I have is that there is too much white space around the graph. > My data would be better displayed if I could widen the graph into the space > to the rig

matplotlib graph white space

2021-10-04 Thread Steve
I am using the first bar graph listed at this site: https://matplotlib.org/stable/gallery/index.html The problem I have is that there is too much white space around the graph. My data would be better displayed if I could widen the graph into the space to the right and left of the chart. Steve

How do I modify a bar graph?

2021-07-29 Thread Steve
The following code is from the site: https://matplotlib.org/stable/gallery/index.html bar graph. Sometimes I want to project a graph that contains almost 100 elements. The program shows everything crammed into a default size graph. Can I modify the size of the graph and make it longer? Also

Re: Trying to read from a text file to generate a graph

2021-07-29 Thread Anssi Saari
"Steve" writes: > I am going though a struggle with this and just don't see where it fails. It seems to me you're putting your data into strings when you need to put it into lists. And no, adding brackets and commas to your strings so that printing out the strings makes them look like lists does

RE: Trying to read from a text file to generate a graph

2021-07-29 Thread Steve
17 bugs in the code. -Original Message- From: Python-list On Behalf Of Stephen Berman Sent: Wednesday, July 28, 2021 5:36 PM To: python-list@python.org Subject: Re: Trying to read from a text file to generate a graph [Resending to the list only, since I couldn't post it without su

Re: Trying to read from a text file to generate a graph

2021-07-28 Thread Stephen Berman
7;t see where it >> fails. I am using the Dual Bar Graph.py program from >> https://matplotlib.org/stable/gallery/index.html website. The file >> from the web site works so that shows that all my installations are >> complete. >> >> My program, LibreGraphics 05.py

RE: Trying to read from a text file to generate a graph

2021-07-28 Thread Steve
so that shows that all my installations are complete. > >My program, LibreGraphics 05.py program runs but the graph is all smutched up. I am pulling data from the EXCEL-FILE.txt into the program, selecting three values for each line and creating three variables formatted as is shown in th

Re: Trying to read from a text file to generate a graph

2021-07-28 Thread Cameron Simpson
installations are >complete. > >My program, LibreGraphics 05.py program runs but the graph is all smutched up. > I am pulling data from the EXCEL-FILE.txt into the program, selecting three >values for each line and creating three variables formatted as is shown in the >original dem

Trying to read from a text file to generate a graph

2021-07-28 Thread Steve
cs 05.py program runs but the graph is all smutched up. I am pulling data from the EXCEL-FILE.txt into the program, selecting three values for each line and creating three variables formatted as is shown in the original demo file. When you run the program, choose 112 when prompted. You will se

Re: plot / graph connecting re ordered lists

2018-01-23 Thread duncan smith
will >>> be reordered. I am looking to make a plot, graph, with the two origins of >> >> IE: you have two lists with the same items in different orders... >> >>> the names in separate columns and a line connecting them to visually >>> represent h

Re: plot / graph connecting re ordered lists

2018-01-23 Thread Vincent Davis
On Tue, Jan 23, 2018 at 4:15 PM Dennis Lee Bieber wrote: > On Tue, 23 Jan 2018 13:51:55 -0700, Vincent Davis > declaimed the following: > > >Looking for suggestions. I have an ordered list of names these names will > >be reordered. I am looking to make a plot, graph, wi

plot / graph connecting re ordered lists

2018-01-23 Thread Vincent Davis
Looking for suggestions. I have an ordered list of names these names will be reordered. I am looking to make a plot, graph, with the two origins of the names in separate columns and a line connecting them to visually represent how much they have moved in the reordering. Surely there is some great

Re: Detecting a cycle in a graph

2018-01-15 Thread Frank Millman
gt; if output in path: > print('Cycle found in', path) > else: > new_path = path[:] > new_path.append(output) > find_cycle(output, new_path) > > find_cycle(node, [node]) > > This traverses ev

Re: Detecting a cycle in a graph

2018-01-15 Thread MRAB
s - when a path loops back on >> itself and revisits a node previously visited. I have figured out a way >> to do this, but I have a problem. > > I don't know if that helps, but there is a classic graph theory > algorithm called "Floyd's cycle detector". The id

Re: Detecting a cycle in a graph

2018-01-14 Thread Frank Millman
revisits a node previously visited. I have figured out a way >> to do this, but I have a problem. > > I don't know if that helps, but there is a classic graph theory > algorithm called "Floyd's cycle detector". The idea is to have a pointer > move along t

Re: Detecting a cycle in a graph

2018-01-14 Thread Christian Gollwitzer
;t know if that helps, but there is a classic graph theory algorithm called "Floyd's cycle detector". The idea is to have a pointer move along the graph and a second one which runs at double the speed. If they meet, you found a cycle. It is not straight-forward to come up with this

Re: Detecting a cycle in a graph

2018-01-14 Thread Christian Gollwitzer
Am 14.01.18 um 09:30 schrieb Frank Millman: I need to detect when a 'cycle' occurs - when a path loops back on itself and revisits a node previously visited. I have figured out a way to do this, but I have a problem. I don't know if that helps, but there is a classic graph th

Re: Detecting a cycle in a graph

2018-01-14 Thread Frank Millman
"Steven D'Aprano" wrote in message news:p3f9uh$ar4$1...@blaine.gmane.org... On Sun, 14 Jan 2018 10:30:31 +0200, Frank Millman wrote: > I can detect a cycle in a path. It is possible for there to be more than > one gateway in the path. I want to identify the gateway that actually > triggered th

Re: Detecting a cycle in a graph

2018-01-14 Thread Steven D'Aprano
On Sun, 14 Jan 2018 10:30:31 +0200, Frank Millman wrote: > I can detect a cycle in a path. It is possible for there to be more than > one gateway in the path. I want to identify the gateway that actually > triggered the cycle, but I have not figured out a way to do this. You don't need a gateway

Detecting a cycle in a graph

2018-01-14 Thread Frank Millman
Hi all I am adding a bpm (Business Process Management) module to my accounting app. A process is laid out as a flowchart, and is therefore a form of directed graph, so I am getting into a bit of graph theory. I got some good ideas from this essay - https://www.python.org/doc/essays/graphs

Re: plot graph from data

2017-04-24 Thread breamoreboy
0.75% 548 MiB / 7.64 GiB > naughty_allen0.28% 94.55 MiB / 7.64 GiB > > > Want to plot graph from this. Issue what i am facing is header name " [2J > [HNAME CPU % MEM USAGE / L

plot graph from data

2017-04-24 Thread Prasenjit Dutta
artifactory-5.0.00.75% 548 MiB / 7.64 GiB naughty_allen0.28% 94.55 MiB / 7.64 GiB Want to plot graph from this. Issue what i am facing is header name "NAME CPU % MEM

Re: K&L graph partitioning code offer

2017-03-29 Thread jladasky
gt; > (Is 18 years a record for thread necromancy?) > > I don't see any reply to a post from 1998 here... What post are you > talking about? The Google Groups interface shows that the first post in this thread is as follows: > From: dwh...@ksu.edu (Dean Hall) > Subject: K&

Re: K&L graph partitioning code offer

2017-03-29 Thread Michael Torrie
On 03/29/2017 11:17 AM, jlada...@itu.edu wrote: > On Wednesday, March 29, 2017 at 1:23:48 AM UTC-7, arpitam...@gmail.com wrote: >> Hi >> I am planning to tweak the Kernighan Lin algorithm a bit use coercing of >> certain vertices .I was wondering if u would be kind enough to share the >> python

Re: K&L graph partitioning code offer

2017-03-29 Thread jladasky
On Wednesday, March 29, 2017 at 1:23:48 AM UTC-7, arpitam...@gmail.com wrote: > Hi > I am planning to tweak the Kernighan Lin algorithm a bit use coercing of > certain vertices .I was wondering if u would be kind enough to share the > python code with me so that i can include my idea in it. Goo

Re: K&L graph partitioning code offer

2017-03-29 Thread Steve D'Aprano
On Wed, 29 Mar 2017 07:29 pm, arpitamishra...@gmail.com wrote: > Hi > I am planning to tweak the Kernighan Lin algorithm a bit use coercing of > certain vertices .I was wondering if u would be kind enough to share the > python code with me so that i can include my idea in it. https://www.google.

K&L graph partitioning code offer

2017-03-29 Thread arpitamishrarkm
Hi I am planning to tweak the Kernighan Lin algorithm a bit use coercing of certain vertices .I was wondering if u would be kind enough to share the python code with me so that i can include my idea in it. -- https://mail.python.org/mailman/listinfo/python-list

K&L graph partitioning code offer

2017-03-29 Thread arpitamishrarkm
Hi I am planning to tweak the Kernighan Lin algorithm a bit use coercing of certain vertices .I was wondering if u would be kind enough to share the python code with me so that i can include my idea in it. -- https://mail.python.org/mailman/listinfo/python-list

Re: Exporting Tensorflow inceptionv3 graph for weight and bias extraction

2017-03-21 Thread jladasky
On Tuesday, March 21, 2017 at 6:27:43 AM UTC-7, Zizwan wrote: > Anyone can help me with this? TensorFlow has a Python wrapper, but it isn't Python. Do you require Python for what you are trying to do? You might try looking for more information in the TensorFlow tutorial newsgroup: https://gr

Exporting Tensorflow inceptionv3 graph for weight and bias extraction

2017-03-21 Thread Zizwan
Anyone can help me with this? -- https://mail.python.org/mailman/listinfo/python-list

Is there a free graph library to show program flow by tranverse AST tree

2016-10-10 Thread Ho Yeung Lee
can this graph library handle recursive function call this symbol If it recursive call a function 3 times then in the inner loop call another function , can this graph library Show this relationship I find video that viv can show this program flow. -- https://mail.python.org/mailman/listinfo

Dynamically updating Graph in python

2016-09-25 Thread anujgupta82
0 down vote favorite I have a M x N 2D array: ith row represents that value of N points at time i. I want to visualize the points [1 row of the array] in the form of a graph where the values get updated after a small interval. Thus the graph shows 1 row at a time, then update the

Re: Plot/Graph

2016-04-04 Thread Steven D'Aprano
On Tue, 5 Apr 2016 08:33 am, Muhammad Ali wrote: [couple of hundred lines of quoted text] [followed by about a thousand lines of code] Seriously? Do you really expect people to read through hundreds of lines of quotes, going at least three levels > > > deep, and then read a thousand lines of cod

Re: Plot/Graph

2016-04-04 Thread Muhammad Ali
a could be > > extracted according to python script and at the end it generates another > > single extracted data file instead of displaying/showing some graph? So > > that, I can manually plot the newly generated file (after data extraction) > > by some other software like orig

Re: Plot/Graph

2016-04-04 Thread Muhammad Ali
> single extracted data file instead of displaying/showing some graph? So > that, I can manually plot the newly generated file (after data extraction) > by some other software like origin. > > It depends what you're computing and what format origin expects the data to > be in

Re: Plot/Graph

2016-04-04 Thread MRAB
gt;> > How do I convert/change/modify python script so that my data could be >> extracted according to python script and at the end it generates another >> single extracted data file instead of displaying/showing some graph? So >> that, I can manually plot the newly generated

Re: Plot/Graph

2016-04-04 Thread Muhammad Ali
convert/change/modify python script so that my data could be > >> extracted according to python script and at the end it generates another > >> single extracted data file instead of displaying/showing some graph? So > >> that, I can manually plot the newly generated fil

Re: Plot/Graph

2016-04-03 Thread MRAB
end it generates another single extracted data file instead of displaying/showing some graph? So that, I can manually plot the newly generated file (after data extraction) by some other software like origin. It depends what you're computing and what format origin expects the data to be in. Pres

Re: Plot/Graph

2016-04-03 Thread Muhammad Ali
> single extracted data file instead of displaying/showing some graph? So > that, I can manually plot the newly generated file (after data extraction) > by some other software like origin. > > It depends what you're computing and what format origin expects the data to > be in

Re: Plot/Graph

2016-04-03 Thread Oscar Benjamin
On 3 Apr 2016 22:21, "Muhammad Ali" wrote: > > How do I convert/change/modify python script so that my data could be extracted according to python script and at the end it generates another single extracted data file instead of displaying/showing some graph? So that, I can m

Re: Plot/Graph

2016-04-03 Thread Muhammad Ali
info/python-list > > Thank you for your post. How do I convert/change/modify python script so that my data could be extracted according to python script and at the end it generates another single extracted data file instead of displaying/showing some graph? So that, I can manually plot the newly generated file (after data extraction) by some other software like origin. -- https://mail.python.org/mailman/listinfo/python-list

Re: Plot/Graph

2016-04-03 Thread Michael Selik
Indeed there is. Every example in the gallery shows the code to produce it. http://matplotlib.org/gallery.html On Sun, Apr 3, 2016, 8:05 PM Muhammad Ali wrote: > > Hi, > > Could anybody tell me that how can I plot graphs by matplotlib and get > expertise in a short time? I have to plot 2D plots

Plot/Graph

2016-04-03 Thread Muhammad Ali
Hi, Could anybody tell me that how can I plot graphs by matplotlib and get expertise in a short time? I have to plot 2D plots just like origin software. Secondly, how could we draw some horizontal reference line at zero when the vertical scale is from -3 to 3? Looking for your posts, please

Tools/libraries to determine the call graph(call flow) of an python program (module/package)

2016-01-12 Thread ashish
> u.py ---> v.py Is there a python library/tool/module , to which i give input the start point of X, x.py and the input arguments, arg1, arg2, ..., argn and which can come up with the call graph of X I have tried looking at pycallgraph[0], but havent had much luck with it. 0. https://pyp

Plotting a timeseris graph from pandas dataframe using matplotlib

2015-11-19 Thread Karthik Sharma
3737 88 16MAIN 9683 69 16MAIN 20729 81 16MAIN 9704 68 16MAIN 1 87 16PAN I have the following python code.I want to plot a graph with the following specifications. For each `SourceID` and

Re: data visualization - graph

2015-07-15 Thread Mark Lawrence
On 15/07/2015 09:08, Kasper Jepsen wrote: Hi, I am looking for a solution to graph charts from real time measurements on the web like: http://pvoutput.org/intraday.jsp?id=16919&sid=14707&gs=1&dxa=1&dt=20150715 I have some solar systems i like to save data into an sql datab

data visualization - graph

2015-07-15 Thread Kasper Jepsen
Hi, I am looking for a solution to graph charts from real time measurements on the web like: http://pvoutput.org/intraday.jsp?id=16919&sid=14707&gs=1&dxa=1&dt=20150715 I have some solar systems i like to save data into an sql database - and then i like to have some web ser

creating a graph out of text

2015-04-14 Thread Pippo
Hi, I am not sure why my code doesn't show the graph. It clearly creates the right nodes and edges but it doesn't show them. Any idea? mport re from Tkinter import * import tkFileDialog import testpattern import networkx as nx import matplotlib.pyplot as plt patternresult

showing a graph

2015-04-13 Thread Pippo
Hi, I want to show the graph for this code: import re from Tkinter import * import tkFileDialog import testpattern import networkx as nx import matplotlib.pyplot as plt patternresult =[] nodes = {} edges = {} pattern = ['(#P\[\w*\])', '(#C\[\w*[\s\(\w\,\s\|\)]+\])',

Re: Anyone used snap.py for drawing a graph?

2015-04-13 Thread Jerry Hill
On Sun, Apr 12, 2015 at 10:29 PM, Pippo wrote: > Any guide on this? > > http://snap.stanford.edu/snappy/#download Sure. http://snap.stanford.edu/snappy/#docs -- https://mail.python.org/mailman/listinfo/python-list

Anyone used snap.py for drawing a graph?

2015-04-12 Thread Pippo
Hi, Any guide on this? http://snap.stanford.edu/snappy/#download -- https://mail.python.org/mailman/listinfo/python-list

Re: networkx plot random graph Error

2014-07-16 Thread Jason Swails
On Jul 15, 2014, at 3:11 AM, u2107 wrote: > I am trying to read a file with 3 columns with col 1 and 2 as nodes/edges and > column 3 as weight (value with decimal) > > I am trying to execute this code > > > import networkx as nx > > > G = nx.read_edgelist('file.txt', data=[("weight")]) >

networkx plot random graph Error

2014-07-15 Thread u2107
I am trying to read a file with 3 columns with col 1 and 2 as nodes/edges and column 3 as weight (value with decimal) I am trying to execute this code import networkx as nx G = nx.read_edgelist('file.txt', data=[("weight")]) G.edges(data=True) edge_labels = dict(((u, v), d["weight"]) for u,

Re: Graph or Chart Software for Django

2014-01-17 Thread Marc Aymerich
On Fri, Jan 17, 2014 at 6:18 PM, San D wrote: > What is the best Graph or Chart software used with Django (libraries & > products), preferably open source? > > Need something stable and robust, and used by many developers, so active on > community channels. what I use is

Graph or Chart Software for Django

2014-01-17 Thread San D
What is the best Graph or Chart software used with Django (libraries & products), preferably open source? Need something stable and robust, and used by many developers, so active on community channels. Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Re: Flip a graph

2014-01-04 Thread David Hutto
I would definitely utilize y axis as an altitudinal derivative of time,x. I'd go with more of a dart type of graphic, so you might be able to show a peak in altitude from take off, and the rotate the graphic in relation to the deceleration . But, you could also depict the velocity, fuel rate, etc

Re: Flip a graph

2014-01-04 Thread Vincent Davis
ve a rocket some distance above the ground, a >> limited amount of fuel and a limited burn rate, and the goal is to have the >> rocket touch the ground below some threshold velocity. >> >> I thought it would be neat, after a game completes, to print a graph >> showing th

Re: Flip a graph

2014-01-04 Thread Vincent Davis
distance above the ground, a > limited amount of fuel and a limited burn rate, and the goal is to have the > rocket touch the ground below some threshold velocity. > > I thought it would be neat, after a game completes, to print a graph > showing the descent. > > Given these mea

Re: Flip a graph

2014-01-04 Thread Terry Reedy
PS to my previous response: please send plain text only, and not the html in addition. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list

Re: Flip a graph

2014-01-04 Thread Terry Reedy
ocket some distance above the ground, a limited amount of fuel and a limited burn rate, and the goal is to have the rocket touch the ground below some threshold velocity. I thought it would be neat, after a game completes, to print a graph showing the descent. Given these measurements: measur

Re: Flip a graph

2014-01-04 Thread Wiktor
On Sat, 4 Jan 2014 09:15:39 -0700, Jason Friedman wrote: > My concern is whether the average 11-year-old will be able to follow such > logic. Is there a better approach? Basically mine approach is the same, but maybe is easier to explain it to kids. max_height = max(measurement_dict.values

Flip a graph

2014-01-04 Thread Jason Friedman
the rocket touch the ground below some threshold velocity. I thought it would be neat, after a game completes, to print a graph showing the descent. Given these measurements: measurement_dict = { # time, height 0: 10, 1: 9, 2: 9, 3: 8, 4: 8, 5: 7, 6: 6, 7: 4, 8: 5

Re: problem with graph of python(show)

2013-12-10 Thread Terry Reedy
On 12/10/2013 12:03 PM, Asemaneh Allame wrote: thanks for your attention my mean is obvios i cont get any graph of vpython I am fairly expert with python but know almost nothing about vpython. I have no idea what 'graph of python' or 'graph of vpython' means. I sug

Re: problem with graph of python(show)

2013-12-10 Thread Andreas Perstinger
On 10.12.2013 18:03, Asemaneh Allame wrote: my mean is obvios i cont get any graph of vpython it shows me a maseage in this form: " pythonw.exe has stopped working" i m sure that have a good & perfect install and i dont khnow what s problem is that enouph?? No, that's n

Re: problem with graph of python(show)

2013-12-10 Thread Asemaneh Allame
gt; > i dont know what s problem... > > please giude me > > thanks thanks for your attention my mean is obvios i cont get any graph of vpython it shows me a maseage in this form: " pythonw.exe has stopped working" i m sure that have a good & perfect install and i don

Re: problem with graph of python(show)

2013-12-09 Thread Mark Lawrence
On 09/12/2013 19:34, Asemaneh Allame wrote: hi everybody i recently install python & vpython(v:2.6.7) in my windows(32bit) it install succesfully but dont show some of graphes that involved their code in the lib.python , i dont know what s problem... please giude me thanks By an amazing coi

problem with graph of python(show)

2013-12-09 Thread Asemaneh Allame
hi everybody i recently install python & vpython(v:2.6.7) in my windows(32bit) it install succesfully but dont show some of graphes that involved their code in the lib.python , i dont know what s problem... please giude me thanks -- https://mail.python.org/mailman/listinfo/python-list

Re: Facebook Graph API

2013-02-19 Thread Сахнов Михаил
gt; > import facebook > import sys; > > token = 'mytokenx'; > > graph = facebook.GraphAPI(token) > profile = graph.get_object("myusername") > friends = graph.get_connections("myusername", "friends") # error occured > at this l

Re: Facebook Graph API

2013-02-19 Thread Terry Reedy
On 2/19/2013 7:37 AM, takeshi honda wrote: The following code gave me the error, "facebook.GraphAPIError: Unsupported operation". How can I fix this error? import facebook import sys; token = 'mytokenxxxxx'; graph = facebook.GraphAPI(token) profile = graph.ge

Facebook Graph API

2013-02-19 Thread takeshi honda
The following code gave me the error, "facebook.GraphAPIError: Unsupported operation". How can I fix this error? import facebook import sys; token = 'mytokenxxxxx'; graph = facebook.GraphAPI(token) profile = graph.get_object("myusername") friends = gra

Graph Drawing

2013-01-02 Thread subhabangalore
Dear Group, In networkx module we generally try to draw the graph as, >>> import networkx as nx >>> G=nx.Graph() >>> G.add_edge(1, 2, weight=4.7 ) >>> G.add_edge(1, 3, weight=4.5 ) . Now, if I want to retrieve the information of traversal from 1 to

consecutive node sequence and pathlength problem using networkx graph

2012-06-13 Thread bob
Let say,I have a conjugated cyclic polygon and its nodes are given by the list: list_p=[a,b,c,d,e,f,g,a,a,b,d,d,d,d,d,c,c,e,e,a,d,d,g]. If X & Y are any elements in a list_p except d, and Z is also an element of list_p but has value only d, i.e, Z=d. Now,I want to compute the number of

Elementwise 0.120116 -//- beta release -//- Lazily compute functions, method calls and operations on all elements of an iterable (or graph).

2012-01-16 Thread Nathan Rice
Elementwise provides helpful proxy objects which let you perform a series of computations on every element of an iterable or graph, in a lazy manner. Docs: http://packages.python.org/elementwise/ GitHub: https://github.com/nathan-rice/Elementwise Examples: The standard ElementwiseProxy

Re: Graph editor

2011-10-14 Thread duncan smith
On 14/10/11 08:45, Libra wrote: Hi, I would like to build a simple graph editor, allowing me to add nodes and edges via the mouse, along with the possibility to edit it (delete/ move nodes and edges, double click on object to pop-up a form where I can insert object related info, and so forth

Graph editor

2011-10-14 Thread Libra
Hi, I would like to build a simple graph editor, allowing me to add nodes and edges via the mouse, along with the possibility to edit it (delete/ move nodes and edges, double click on object to pop-up a form where I can insert object related info, and so forth) and bind edges to nodes (that is

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Ravikanth
; > On Jun 15, 12:00 pm, Ravikanth wrote: > > > > > > > On Jun 15, 10:32 am, Wanderer wrote: > > > > > > > > On Jun 15, 11:04 am, Ravikanth wrote: > > > > > > > > > Hi all, > > > > > > > > > I am

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Wanderer
ikanth wrote: > > > > > > On Jun 15, 10:32 am, Wanderer wrote: > > > > > > > On Jun 15, 11:04 am, Ravikanth wrote: > > > > > > > > Hi all, > > > > > > > > I am a beginner in python. I need to implement a graph with > &g

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Ravikanth
> > On Jun 15, 11:04 am, Ravikanth wrote: > > > > > > > Hi all, > > > > > > > I am a beginner in python. I need to implement a graph with multiple > > > > > > colors in it. > > > > > > In a way, I ha

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Wanderer
e: > > > > > > Hi all, > > > > > > I am a beginner in python. I need to implement a graph with multiple > > > > > colors in it. > > > > > In a way, I have a function which varies with respect to time and > > > > > a

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Ravikanth
On Jun 15, 11:57 am, Wanderer wrote: > On Jun 15, 12:00 pm, Ravikanth wrote: > > > > > > > On Jun 15, 10:32 am, Wanderer wrote: > > > > On Jun 15, 11:04 am, Ravikanth wrote: > > > > > Hi all, > > > > > I am a beginner in pyth

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Wanderer
On Jun 15, 12:00 pm, Ravikanth wrote: > On Jun 15, 10:32 am, Wanderer wrote: > > > > > > > > > > > On Jun 15, 11:04 am, Ravikanth wrote: > > > > Hi all, > > > > I am a beginner in python. I need to implement a graph with multiple

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Ravikanth
On Jun 15, 10:32 am, Wanderer wrote: > On Jun 15, 11:04 am, Ravikanth wrote: > > > > > > > Hi all, > > > I am a beginner in python. I need to implement a graph with multiple > > colors in it. > > In a way, I have a function which varies with respec

Re: creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Wanderer
On Jun 15, 11:04 am, Ravikanth wrote: > Hi all, > > I am a beginner in python. I need to implement a graph with multiple > colors in it. > In a way, I have a function which varies with respect to time and > amplitude. I have time on x-axis and amplitude on y-axis. Lets say the

creating a multi colored graph with respect to the values in y-axis

2011-06-15 Thread Ravikanth
Hi all, I am a beginner in python. I need to implement a graph with multiple colors in it. In a way, I have a function which varies with respect to time and amplitude. I have time on x-axis and amplitude on y-axis. Lets say the amplitude of the graph is divided into 4 ranges, say 1-3,3-5,5-9, 10

Re: Parsing a graph image

2011-05-21 Thread John J Lee
Bastian Ballmann writes: > Hi, > > the project sounds like the exact tool that i need but regarding the > user manual one has to mark the points on the graph manually. Therefore > it's more work to get the data out than doing it without a tool. Or may > I miss something h

Re: Parsing a graph image

2011-05-16 Thread Robert Kern
On 5/16/11 8:38 AM, Bastian Ballmann wrote: Hi, the project sounds like the exact tool that i need but regarding the user manual one has to mark the points on the graph manually. Therefore it's more work to get the data out than doing it without a tool. Or may I miss something here? Yo

Re: Parsing a graph image

2011-05-16 Thread Bastian Ballmann
Hi, the project sounds like the exact tool that i need but regarding the user manual one has to mark the points on the graph manually. Therefore it's more work to get the data out than doing it without a tool. Or may I miss something here? Greets Basti Am Fri, 13 May 2011 14:38:45

Re: Parsing a graph image

2011-05-14 Thread Paul
On May 13, 11:19 pm, Bastian Ballmann wrote: > Hi python lovers out there, > > I am searching for a library to parse data from a graph in an image file > something likehttp://pytseries.sourceforge.net/_images/yahoo.png > Any suggestions, hints, links? > > TIA &&

Re: Parsing a graph image

2011-05-13 Thread Dan Stromberg
BTW, I don't do string concatenation this much anymore, and xrange is good in 2.x. :) On Fri, May 13, 2011 at 3:19 AM, Bastian Ballmann wrote: > Hi python lovers out there, > > I am searching for a library to parse data from a graph in an image file > something like http://pyt

Re: Parsing a graph image

2011-05-13 Thread Robert Kern
On 5/13/11 7:24 AM, Bastian Ballmann wrote: Hi, Am Fri, 13 May 2011 14:01:48 +0200 schrieb Ulrich Eckhardt: I'm not sure I understand 100% what you want. If you want to extract ("parse") the data that is contained in an image file, I have no clue how to do that. Yes, I want to extract the da

Re: Parsing a graph image

2011-05-13 Thread Neil Cerutti
On 2011-05-13, Bastian Ballmann wrote: > Hi python lovers out there, > > I am searching for a library to parse data from a graph in an > image file something like > http://pytseries.sourceforge.net/_images/yahoo.png Any > suggestions, hints, links? You can do

Re: Parsing a graph image

2011-05-13 Thread Laurent Claessens
I guess it requires some kind of image processing , where you can move around image pixel by pixel and somehow figure out what color is present in that pixel . If there isn’t much noise in the image you should sharp contrast and would be able to differentiate between two colors ? if yes ( I don

Re: Parsing a graph image

2011-05-13 Thread saurabh verma
On 13-May-2011, at 5:54 PM, Bastian Ballmann wrote: > Hi, > > Am Fri, 13 May 2011 14:01:48 +0200 > schrieb Ulrich Eckhardt : > >> I'm not sure I understand 100% what you want. If you want to extract >> ("parse") the data that is contained in an image file, I have no clue >> how to do that. >

Re: Parsing a graph image

2011-05-13 Thread Laurent Claessens
Yes, I want to extract the data that is contained in an image file. Greets Basti > Yes, I want to extract the data that is contained in an image file. > Greets Maybe ask to imagemagick's or matplotlib. They should know if it is possible at all. Good luck. Laurent -- http://mail.python.o

Re: Parsing a graph image

2011-05-13 Thread Laurent Claessens
Yes, I want to extract the data that is contained in an image file. Greets Maybe ask to imagemagick's or matplotlib. They should know if it is possible at all. Good luck. Laurent -- http://mail.python.org/mailman/listinfo/python-list

Re: Parsing a graph image

2011-05-13 Thread Laurent Claessens
Yes, I want to extract the data that is contained in an image file. Greets Maybe ask to imagemagick's or matplotlib. They should know if it is possible at all. Good luck. Laurent -- http://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   >