You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(15) |
Sep
(21) |
Oct
(15) |
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(6) |
Mar
(2) |
Apr
(5) |
May
(6) |
Jun
(3) |
Jul
(4) |
Aug
(4) |
Sep
(3) |
Oct
(14) |
Nov
(16) |
Dec
(10) |
2004 |
Jan
(5) |
Feb
(10) |
Mar
(4) |
Apr
(8) |
May
(1) |
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(10) |
Oct
(3) |
Nov
(4) |
Dec
|
2005 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(15) |
May
(12) |
Jun
(1) |
Jul
(4) |
Aug
(3) |
Sep
(6) |
Oct
(7) |
Nov
(21) |
Dec
(11) |
2006 |
Jan
(16) |
Feb
(12) |
Mar
(4) |
Apr
(6) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(5) |
Sep
(1) |
Oct
(10) |
Nov
(4) |
Dec
(3) |
2007 |
Jan
(6) |
Feb
(4) |
Mar
(6) |
Apr
(11) |
May
(1) |
Jun
(21) |
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(4) |
Nov
|
Dec
|
2008 |
Jan
(14) |
Feb
(1) |
Mar
(5) |
Apr
(22) |
May
(4) |
Jun
(1) |
Jul
(7) |
Aug
(5) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
(1) |
2009 |
Jan
(14) |
Feb
(1) |
Mar
(9) |
Apr
(5) |
May
(6) |
Jun
(7) |
Jul
(8) |
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2010 |
Jan
(2) |
Feb
|
Mar
(6) |
Apr
(6) |
May
(34) |
Jun
|
Jul
(8) |
Aug
(3) |
Sep
|
Oct
(5) |
Nov
(3) |
Dec
(1) |
2011 |
Jan
|
Feb
(4) |
Mar
(3) |
Apr
|
May
|
Jun
(5) |
Jul
(9) |
Aug
(5) |
Sep
(9) |
Oct
(3) |
Nov
(10) |
Dec
(1) |
2012 |
Jan
(1) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(9) |
2014 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Launay Pierre-A. <Pie...@ac...> - 2004-03-02 13:46:50
|
On mandrake 8.2 I can't work on gnuplot graph , I can put a canvas and use it to redraw a gnuplot graph but I can't use the mouse and work with it in python in the gnuplot graph. Excuse me for my english Thanks Per. |
From: <kai...@t-...> - 2004-02-29 23:20:08
|
Andy Schmeder wrote: >I want to make parametric surface plots, but I can't figure out how to do >it with Gnuplot.py. I've seen plenty of examples done with gnuplot >functions, but... how to provide my own data? > >I can do something like this: (pseudocode) > >u = aspan(-0.5*Pi, 0.5*Pi, 100) >v = aspan(0, 2.0*Pi, 100) >uv = cartesian_product(u, v) >g('set parametric') >g.splot(GridData(cos(uv[0])*cos(uv[1]), cos(uv[0])*sin(uv[1]), sin(uv[0]), >type='lines')) > >Sure enough, it plots a sphere as expected, but its a line trace not a >true surface, e.g. it can't hide backfaces... > > I think you are just missing g("set hidden"). The following plots a sphere for me with hidden-line removal: import math import Gnuplot, Numeric, raster from Numeric import NewAxis theta = raster.raster(0, math.pi, 18, 0, 19) phi = raster.raster(0, 2.0 * math.pi, 36, 0, 37) xyz = Numeric.zeros((len(theta), len(phi), 3,), Numeric.Float64) xyz[:,:,0] = Numeric.sin(theta[:, NewAxis]) * Numeric.cos(phi[NewAxis, :]) xyz[:,:,1] = Numeric.sin(theta[:, NewAxis]) * Numeric.sin(phi[NewAxis, :]) xyz[:,:,2] = Numeric.cos(theta[:, NewAxis]) + (phi[NewAxis, :] * 0) g = Gnuplot.Gnuplot() g('set parametric') g('set hidden') g('set data style lines') g.splot(xyz) raw_input("Press return to continue") Hope this helps, Michael -- Michael Haggerty mh...@al... |
From: Andy S. <an...@a2...> - 2004-02-29 04:04:08
|
Hi all. I want to make parametric surface plots, but I can't figure out how to do it with Gnuplot.py. I've seen plenty of examples done with gnuplot functions, but... how to provide my own data? I can do something like this: (pseudocode) u = aspan(-0.5*Pi, 0.5*Pi, 100) v = aspan(0, 2.0*Pi, 100) uv = cartesian_product(u, v) g('set parametric') g.splot(GridData(cos(uv[0])*cos(uv[1]), cos(uv[0])*sin(uv[1]), sin(uv[0]), type='lines')) Sure enough, it plots a sphere as expected, but its a line trace not a true surface, e.g. it can't hide backfaces... I've seen plenty of examples online using gnuplot's internal functions, but I've got no idea how to do a parametric surface from input data... is this possible? Thanks, Andy. --------------------------------------------------------------- Andrew (Andy) W. Schmeder mailto:an...@a2... http://www.a2hd.com |
From: Wang, R. J <Ric...@bo...> - 2004-02-20 19:57:00
|
Hi, all I had to do was edit line 38 of "gp_win32.py" in the directory where you installed Gnuplot.py, and set the correct gnuplot_command variable. In order to have it work with spaces in the path, you have to do it like the example and enclose quotes in the quotes. I am using winXP and Gnuplot 1.7 as well -----Original Message----- From: Jon Moody [mailto:jon...@mo...]=20 Sent: Thursday, February 19, 2004 2:36 PM To: gnu...@li... Subject: [Gnuplot-py-users] Re: 1.7 problem I had this problem under WinXP, and the way I fixed it was to install the pgnuplot.exe and wgnuplot.exe binaries in a location that didn't have a space in the pathname. =20 For example, install them under C:\gnuplot\ instead of C:\Documents and Settings\... or C:\Program Files\... (This item would be ideal for the FAQ.txt) -- Jonathan Moody, Ph.D Molecular Imaging Research, Inc. John Bollinger wrote: =20 >Hello, > >Thanks for Gnuplot.py! > >The following is not a problem in 1.5: > > =20 > >>>>import Gnuplot >>>>g =3D Gnuplot.Gnuplot() >>>>g('test') >>>> =20 >>>> >Traceback (most recent call last): > File "<stdin>", line 1, in ? > File >"C:\Python23\Lib\site-packages\Gnuplot\_Gnuplot.py", >line 199, in __call_ >_ > self.gnuplot(s) > File >"C:\Python23\Lib\site-packages\Gnuplot\gp_win32.py", >line 125, in __call_ >_ > self.write(s + '\n') >IOError: [Errno 22] Invalid argument > =20 > > >Python 3.2.3 >Numeric 23.1 >Gnuplot.py 1.7 >gnuplot 3.8j >win 2k > =20 > ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=3D1356&alloc_id=3D3438&op=3Dclick _______________________________________________ Gnuplot-py-users mailing list Gnu...@li... https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users |
From: Jon M. <jon...@mo...> - 2004-02-19 22:41:44
|
I had this problem under WinXP, and the way I fixed it was to install the pgnuplot.exe and wgnuplot.exe binaries in a location that didn't have a space in the pathname. For example, install them under C:\gnuplot\ instead of C:\Documents and Settings\... or C:\Program Files\... (This item would be ideal for the FAQ.txt) -- Jonathan Moody, Ph.D Molecular Imaging Research, Inc. John Bollinger wrote: >Hello, > >Thanks for Gnuplot.py! > >The following is not a problem in 1.5: > > > >>>>import Gnuplot >>>>g = Gnuplot.Gnuplot() >>>>g('test') >>>> >>>> >Traceback (most recent call last): > File "<stdin>", line 1, in ? > File >"C:\Python23\Lib\site-packages\Gnuplot\_Gnuplot.py", >line 199, in __call_ >_ > self.gnuplot(s) > File >"C:\Python23\Lib\site-packages\Gnuplot\gp_win32.py", >line 125, in __call_ >_ > self.write(s + '\n') >IOError: [Errno 22] Invalid argument > > > >Python 3.2.3 >Numeric 23.1 >Gnuplot.py 1.7 >gnuplot 3.8j >win 2k > > |
From: <kai...@t-...> - 2004-02-17 22:44:28
|
Hello, There is no explicit support for the "set label" command in Gnuplot.py, but you can easily do this using the ability to pass arbitrary commands to gnuplot: for (x,y,code) in data: g('set label "%s" at %g,%g' % (code, x+xoffset, y+yoffset)) where xoffset and yoffset are chosen so that the label does not overwrite the point itself. Hope this helps, Michael Martin Peters wrote: > I am trying to label my plots automatically through scripts -- ( very > large data-sets, Ex**l doesn't like it) [...] > g.label(("test label") at 5,5) <---- How do you automate this > line? [...] > DATA: > | x | y | code | > |--------------|--------| > | 1 | 0.50 | A12 | > | 2 | 0.75 | ZXC | > | 3 | 0.45 | GFS | > | 4 | 0.23 | AER | > | 5 | 0.12 | ASD | > | 6 | 0.90 | IOP | > |-----------------------| > How do you make a graph, and label each of the 6 points with the, x > and y value, or by its code? -- Michael Haggerty mh...@al... |
From: Agnes J. <jj...@ho...> - 2004-02-17 21:52:22
|
Hi John, I'm also just beginning with gnuplot.py. But enclosed you'll find a script that plots an ohlcv financebar plot that works just fine. I managed to also plot the dates on the x-axis. w. k. regards, Joost Janse ----- Original Message ----- From: "John Bollinger" <bb...@ya...> To: <gnu...@li...> Sent: Tuesday, February 17, 2004 5:35 PM Subject: [Gnuplot-py-users] gnuplot.py and stocks > Hello plotters, > > I am very familiar with gnuplot, but just learning > gnuplot.py. Does anyone have any experience with > plotting stocks with financebars, candlesticks, etc? > An example script perhaps? > > Thanks in advance, > > --jab > > ===== > John Bollinger, CFA, CMT > www.BollingerBands.com > > If you advance far enough, you arrive at the beginning. > > __________________________________ > Do you Yahoo!? > Yahoo! Finance: Get your refund fast by filing online. > http://taxes.yahoo.com/filing.html > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > |
From: John B. <bb...@ya...> - 2004-02-17 16:40:19
|
Hello plotters, I am very familiar with gnuplot, but just learning gnuplot.py. Does anyone have any experience with plotting stocks with financebars, candlesticks, etc? An example script perhaps? Thanks in advance, --jab ===== John Bollinger, CFA, CMT www.BollingerBands.com If you advance far enough, you arrive at the beginning. __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html |
From: Martin P. <mb...@ps...> - 2004-02-17 15:06:54
|
Hi, I am trying to label my plots automatically through scripts -- ( very large data-sets, Ex**l doesn't like it) y= [] steps = range(len(y)) d = Gnuplot.Data(steps,y) g = Gnuplot.Gnuplot() g.title("Title") g.xlabel("X-label") g.ylabel("Y-label") g.label(("test label") at 5,5) <---- How do you automate this line? g('set data style linespoints') g.plot(d) g.hardcopy('output.ps', enhanced=1, color=1) DATA: | x | y | code | |--------------|--------| | 1 | 0.50 | A12 | | 2 | 0.75 | ZXC | | 3 | 0.45 | GFS | | 4 | 0.23 | AER | | 5 | 0.12 | ASD | | 6 | 0.90 | IOP | |-----------------------| How do you make a graph, and label each of the 6 points with the, x and y value, or by its code? your help is much appreciated, cheers, Martin. |
From: Leonardo M. <lm...@ud...> - 2004-02-02 16:18:33
|
Hi All > pyfits and PyRAF use numarray instead of Numeric, so I have used > Gnuplot.py with numarray.array inputs for more than half a year. > Everything seems to work fine. I think numarray tries to be > backward compatible with Numeric. Yes, and moreover, there is a list of differences between the two here: http://www.stsci.edu/resources/software_hardware/numarray/userguide It seems like the differences should not affect Gnuplot.py, but this is a question for Michael perhaps. Howabout a condicional import in the relevant modules? (funcutils, etc) Something like: #### try: import Numarray as numeric_lib except: import Numeric as numeric_lib #### And then all internal references are made to "numeric_lib", for instance return numeric_lib.asarray(m, Numeric.Float32) I think it is fare to assume that the user will prefer Numarray if installed, and I also think that Numeric will be around for a loooong time. Sounds reasonable ? Best Leo |
From: Juho S. <juh...@as...> - 2004-02-02 07:29:35
|
On Sat, 31 Jan 2004, Michael Haggerty wrote: > >If Gnuplot.py would require changes to use numarray, then the most >important question is when to make the transition. It's unlikely that >the whole Python community will switch from one library to the other on >the same day! > pyfits and PyRAF use numarray instead of Numeric, so I have used Gnuplot.py with numarray.array inputs for more than half a year. Everything seems to work fine. I think numarray tries to be backward compatible with Numeric. regards, Juho Schultz e-mail: juh...@as... www.astro.helsinki.fi/~jschultz Observatory P.O. Box 14 FIN-00014 University of Helsinki FINLAND |
From: <kai...@t-...> - 2004-01-31 06:49:23
|
RC wrote: > Do you have plans to update gnuplot.py to be compatible with numarray, > which the Numerical Python website > says is to be the replacement for Numeric. I am fairly new to python, > but if it is just a question of replacing > references to Numeric with numarray, I can probably handle it. Thanks > for your assistance. > Recif I haven't actively been following the development of numarray, but I understand that it is almost identical to Numeric. Does anybody know of any differences that would be relevant to Gnuplot.py? Is it imported under a different name, or does one still "import Numeric"? If Gnuplot.py would require changes to use numarray, then the most important question is when to make the transition. It's unlikely that the whole Python community will switch from one library to the other on the same day! Ideally, there would be a way to use Numeric and/or numarray and/or JNumeric or none of the above (native Python sequences). There would need to be a way to decide which to use at the time that Gnuplot.py is imported. Anybody have any thoughts on this issue? Michael -- Michael Haggerty mh...@al... |
From: RC <re...@ya...> - 2004-01-31 01:43:18
|
Hi, Are there plans to update gnuplot.py to be compatible with numarray, which the Numerical Python website says is to be the replacement for Numeric. I am fairly new to python, but if it is just a question of replacing references to Numeric with numarray, I can probably handle it. Thanks for your assistance. Recif |
From: <kai...@t-...> - 2004-01-14 23:39:08
|
Hello, I guess nobody has responded to this email? I don't use windows, but I believe that this problem usually indicates that gnuplot (i.e., the program, not the Python interface) didn't start up correctly. It could be a PATH problem, for example. If you search the mailing list archives you will see several similar questions and responses. Michael John Bollinger wrote: >Hello, > >Thanks for Gnuplot.py! > >The following is not a problem in 1.5: > > > >>>>import Gnuplot >>>>g = Gnuplot.Gnuplot() >>>>g('test') >>>> >>>> >Traceback (most recent call last): > File "<stdin>", line 1, in ? > File >"C:\Python23\Lib\site-packages\Gnuplot\_Gnuplot.py", >line 199, in __call_ >_ > self.gnuplot(s) > File >"C:\Python23\Lib\site-packages\Gnuplot\gp_win32.py", >line 125, in __call_ >_ > self.write(s + '\n') >IOError: [Errno 22] Invalid argument > > > >Python 3.2.3 >Numeric 23.1 >Gnuplot.py 1.7 >gnuplot 3.8j >win 2k > > -- Michael Haggerty mh...@al... |
From: John B. <bb...@ya...> - 2004-01-06 23:26:00
|
Hello, Thanks for Gnuplot.py! The following is not a problem in 1.5: >>> import Gnuplot >>> g = Gnuplot.Gnuplot() >>> g('test') Traceback (most recent call last): File "<stdin>", line 1, in ? File "C:\Python23\Lib\site-packages\Gnuplot\_Gnuplot.py", line 199, in __call_ _ self.gnuplot(s) File "C:\Python23\Lib\site-packages\Gnuplot\gp_win32.py", line 125, in __call_ _ self.write(s + '\n') IOError: [Errno 22] Invalid argument >>> Python 3.2.3 Numeric 23.1 Gnuplot.py 1.7 gnuplot 3.8j win 2k --jab ===== John Bollinger, CFA, CMT www.BollingerBands.com If you advance far enough, you arrive at the beginning. __________________________________ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signingbonus |
From: Tom M. <Tom...@fy...> - 2003-12-24 06:28:41
|
Hello, Thank you. I'm a beginning Linux user and I didn't install python-numeric. Everything seems to work all right now. Best regards, Tom |
From: Leonardo M. <lm...@ud...> - 2003-12-24 01:08:04
|
Hi Tom > ImportError: No module named Numeric You need to install the numeric extension to python. http://www.pfdubois.com/numpy/ You can install from source, but also some linux distributions include it. For instance, in my Mandrake 9.2 the package is python-numeric-22.0-4mdk Good luck -- leo On Tue, 23 Dec 2003, Tom Mortier wrote: > Hello, |
From: Tom M. <tom...@st...> - 2003-12-23 16:04:19
|
Hello, I've got a problem with the installation of gnuplot-py. I tried to install gnuplot-py like in the README file or on the webpage: 1. Download gnuplot-py-1.7.tar.gz 2. Extract the archive to a temporary directory. I used tar -xvf gnuplot-py-1.7.tar.gz 3. Install by changing to the directory and typing "python setup.py install". When I gave the command python setup.py install , the computer gave this output : Traceback (most recent call last): File "setup.py", line 17, in ? from __init__ import __version__ File "__init__.py", line 167, in ? from PlotItems import PlotItem, Func, File, Data, GridData File "PlotItems.py", line 26, in ? import Numeric ImportError: No module named Numeric I don't know what the problem is. Has somebody been having the same problem ? Best regards, Tom |
From: James M. <jbm...@uc...> - 2003-12-17 03:30:51
|
I have searched the documentation and the archive and have not found how to plot data with error bars. Could someone please point me in the right direction. A short piece of code would be helpful -------------------------------- James B. Maciokas, Ph.D University of California, Davis Center for Neuroscience 1544 Newton Ct Davis, CA 95616-8768 Tel: (530) 757-5081 Fax: (530) 757-5247 jbm...@uc... -------------------------------- |
From: <kai...@t-...> - 2003-12-17 02:56:31
|
James Maciokas wrote: >Could someone please point me in the right direction for list of available >plot types? I have searched the documentation and the mailing list without >success. > >Some example plots with errorbars would be most helpful. > The styles of plotting are documented within gnuplot under the help system; type "help plot with" and "help set style" to get info. To plot with errorbars under Gnuplot.py, you need either 3 (x,y,delta) or 4 (x,y,ylow,ymax) columns of data and then specify the "with='errorbars'" option: >>> import Gnuplot >>> g = Gnuplot.Gnuplot() >>> g('set xrange [0:5]') >>> g.plot(Gnuplot.Data([[1,2,0.1],[2,3,0.2], [3,4,0.3]], with='errorbars')) >>> g.plot(Gnuplot.Data([[1,2,1.5,2.2],[2,3,2.8,3.3], [3,4,3.2,4.7]], with='errorbars')) Hope that helps. Michael -- Michael Haggerty mh...@al... |
From: James M. <jbm...@uc...> - 2003-12-16 21:22:33
|
Could someone please point me in the right direction for list of available plot types? I have searched the documentation and the mailing list without success. Some example plots with errorbars would be most helpful. Thanks for your help... -------------------------------- James B. Maciokas, Ph.D University of California, Davis Center for Neuroscience 1544 Newton Ct Davis, CA 95616-8768 Tel: (530) 757-5081 Fax: (530) 757-5247 jbm...@uc... -------------------------------- |
From: <kai...@t-...> - 2003-12-16 09:48:12
|
Nadav, The dependence on the version of Gnuplot.py is strange. Aside from the difference between FIFOs and temporary files, which the option change reverses, I don't understand why they behave differently. Do you need to use a different gnuplot terminal type to get the mouse features? If so, there is an option "default_term" in gp_*.py that you might try playing with. I suggest that you create the Gnuplot object with the option Gnuplot(debug=1). This will display each of the commands being sent by Gnuplot.py to gnuplot. If you compare the commands sent by 1.6 and 1.7 the difference might lead you to an explanation. I currently don't have gnuplot 3.8 installed on my computers so I can't test things myself. I'll try it out when I get a chance (which might not be very soon). Michael Nadav Horesh wrote: > I tried again, but now it seems that the mouse command don t pass > through to gnuplot --- no coordinates display, no zoom etc. Switching > back and forth between 1.6 and 1.7 reveal that it is 1.7 problem only. > > Nadav. > > Nadav Horesh wrote: > >> Thank you for your replay, I'll try to make the patch and test it again. >> The option to mouse-interact with gnuplot's graphics window was >> introduced in gnuplot 3.8. It works under X11, and win32 and probably >> under some other OS's. >> I have tested gnuplot-py 1.7 + gnuplot 3.8 combination only under >> gnu/linux. I had no problems with gnuplot-py 1.6 + gnuplot 3.8 under >> win32. >> >> Nadav >> >>> Under linux I can not use gnuplot's mouse interaction ((un)set grid, >>> (un)zoom, etc.). It looks like gnuplot reread the data file on every >>> operation, thus it conflicts with the pipe interface introduced in 1.7. >>> >>> Any work-around (beside going back to 1.6)? >> -- Michael Haggerty mh...@al... |
From: Nadav H. <na...@vi...> - 2003-12-16 08:52:24
|
I tried again, but now it seems that the mouse command don t pass through to gnuplot --- no coordinates display, no zoom etc. Switching back and forth between 1.6 and 1.7 reveal that it is 1.7 problem only. Nadav. Nadav Horesh wrote: > Thank you for your replay, I'll try to make the patch and test it again. > The option to mouse-interact with gnuplot's graphics window was introduced in gnuplot 3.8. It works under X11, and win32 and probably under some other OS's. > I have tested gnuplot-py 1.7 + gnuplot 3.8 combination only under gnu/linux. I had no problems with gnuplot-py 1.6 + gnuplot 3.8 under win32. > > Nadav > -----Original Message----- > From: kai...@t-... [mailto:kai...@t-...] > Sent: Sat 13-Dec-03 22:42 > To: gnu...@li... > Cc: > Subject: Re: [Gnuplot-py-users] gnuplot-py 1.7 and gnuplot 3.8 mouse-interaction conflict > Nadav Horesh wrote: > > >>Under linux I can not use gnuplot's mouse interaction ((un)set grid, >>(un)zoom, etc.). It looks like gnuplot reread the data file on every >>operation, thus it conflicts with the pipe interface introduced in 1.7. >> >>Any work-around (beside going back to 1.6)? > > > > Sorry I didn't respond earlier. I was on vacation. > > I am not familiar with the commands that you mentioned. On what gnuplot > version and platform are they? Are they specific to a particular > terminal type? > > If this feature causes gnuplot.py to read the input file twice, that > would indeed be a problem when working with FIFOs. Normally, as soon as > the FIFO has been read once by gnuplot, it is deleted. It would be > possible to keep the FIFO around for possible repeated reads, but this > would defeat the purpose of the FIFO (which was to enable Gnuplot.py to > know when it is safe to discard old data). > > As for a workaround, you can go back to using temporary files as a > default by going to the gp_*.py file specific to your platform (e.g., > gp_unix.py or gp_macosx.py) and changing the option "prefer_fifo_data" to 0. > > Michael > |
From: Nadav H. <na...@vi...> - 2003-12-14 09:26:05
|
Thank you for your replay, I'll try to make the patch and test it again. The option to mouse-interact with gnuplot's graphics window was = introduced in gnuplot 3.8. It works under X11, and win32 and probably = under some other OS's. I have tested gnuplot-py 1.7 + gnuplot 3.8 combination only under = gnu/linux. I had no problems with gnuplot-py 1.6 + gnuplot 3.8 under = win32. Nadav -----Original Message----- From: kai...@t-... [mailto:kai...@t-...] Sent: Sat 13-Dec-03 22:42 To: gnu...@li... Cc:=09 Subject: Re: [Gnuplot-py-users] gnuplot-py 1.7 and gnuplot 3.8 = mouse-interaction conflict Nadav Horesh wrote: > Under linux I can not use gnuplot's mouse interaction ((un)set grid,=20 > (un)zoom, etc.). It looks like gnuplot reread the data file on every=20 > operation, thus it conflicts with the pipe interface introduced in = 1.7. > > Any work-around (beside going back to 1.6)?=20 Sorry I didn't respond earlier. I was on vacation. I am not familiar with the commands that you mentioned. On what gnuplot = version and platform are they? Are they specific to a particular=20 terminal type? If this feature causes gnuplot.py to read the input file twice, that=20 would indeed be a problem when working with FIFOs. Normally, as soon as = the FIFO has been read once by gnuplot, it is deleted. It would be=20 possible to keep the FIFO around for possible repeated reads, but this=20 would defeat the purpose of the FIFO (which was to enable Gnuplot.py to=20 know when it is safe to discard old data). As for a workaround, you can go back to using temporary files as a=20 default by going to the gp_*.py file specific to your platform (e.g.,=20 gp_unix.py or gp_macosx.py) and changing the option "prefer_fifo_data" = to 0. Michael --=20 Michael Haggerty mh...@al... ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Gnuplot-py-users mailing list Gnu...@li... https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users |
From: <kai...@t-...> - 2003-12-13 20:27:56
|
Nadav Horesh wrote: > Under linux I can not use gnuplot's mouse interaction ((un)set grid, > (un)zoom, etc.). It looks like gnuplot reread the data file on every > operation, thus it conflicts with the pipe interface introduced in 1.7. > > Any work-around (beside going back to 1.6)? Sorry I didn't respond earlier. I was on vacation. I am not familiar with the commands that you mentioned. On what gnuplot version and platform are they? Are they specific to a particular terminal type? If this feature causes gnuplot.py to read the input file twice, that would indeed be a problem when working with FIFOs. Normally, as soon as the FIFO has been read once by gnuplot, it is deleted. It would be possible to keep the FIFO around for possible repeated reads, but this would defeat the purpose of the FIFO (which was to enable Gnuplot.py to know when it is safe to discard old data). As for a workaround, you can go back to using temporary files as a default by going to the gp_*.py file specific to your platform (e.g., gp_unix.py or gp_macosx.py) and changing the option "prefer_fifo_data" to 0. Michael -- Michael Haggerty mh...@al... |