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
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
(1) |
16
|
17
|
18
|
19
|
20
|
21
(1) |
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
(3) |
30
(1) |
31
|
From: Michael H. <mh...@al...> - 2007-03-30 12:55:52
|
Kelvin Chu wrote: > I use gnuplot-py very often because it is better suited to most of my > tasks than other python plotting routines. That much said, I am getting > warnings > > Warning: 'with' will become a reserved keyword in Python 2.6 > > I have 3 questions. > > 1. Is there any way to turn off these warnings? > 2. Should I be using a different way of setting linetypes, etc. for > plotting? > > d = Gnuplot.Data(x,y,with='lines lt 4') > > 3. Is Gnuplot.py going to replace the 'with' keyword? I just committed a change to Gnuplot.py in r299 of trunk which allows client code to name the option "with_" (note trailing underscore) to avoid warnings and errors with newer versions of Python. I also changed the Gnuplot.py code itself so that it does not use "with" as an identifier. However, for backwards compatibility (and through the magic of Python varargs processing), Gnuplot.py still accepts "with" as an alternative spelling of this option. Thus this change should not break old clients. Regarding your questions: 1. This change should get rid of the warnings, assuming you change your code accordingly. 2. Rename 'with' -> 'with_' 3. Done. Michael |
From: Kelvin C. <kel...@uv...> - 2007-03-29 23:13:51
|
Hi there; I use gnuplot-py very often because it is better suited to most of my tasks than other python plotting routines. That much said, I am getting warnings Warning: 'with' will become a reserved keyword in Python 2.6 I have 3 questions. 1. Is there any way to turn off these warnings? 2. Should I be using a different way of setting linetypes, etc. for plotting? d = Gnuplot.Data(x,y,with='lines lt 4') 3. Is Gnuplot.py going to replace the 'with' keyword? Thanks very much. -k -- Department of Physics, Cook Building, University of Vermont 82 University Place, Burlington VT 05405-0125 http://www.uvm.edu/~kchu/; (802) 656-0064; Fax: (802) 656-0817 |
From: Michael H. <mh...@al...> - 2007-03-29 21:48:29
|
V.Shenoy wrote: > I am pretty new to Gnuplot and I have installed Gnuplot.py recently. I > am getting the following bug when i run the test.py... > > File "test.py", line 284, in ? > main() > File "test.py", line 64, in main > g.plot(Gnuplot.Func('sin(x)')) > File "C:\Python22\Gnuplot\_Gnuplot.py", line 274, in plot > self.refresh() > File "C:\Python22\Gnuplot\_Gnuplot.py", line 215, in refresh > self(self.plotcmd + ' ' + string.join(plotcmds, ', ')) > File "C:\Python22\Gnuplot\_Gnuplot.py", line 199, in __call__ > self.gnuplot(s) > File "C:\Python22\Gnuplot\gp_win32.py", line 125, in __call__ > self.write(s + '\n') > IOError: [Errno 22] Invalid argument > > Kindly help... This usually means that pgnuplot.exe is either not installed or not in your PATH. Michael |
From: V.Shenoy <V.S...@lb...> - 2007-03-29 20:19:54
|
Hello, I am pretty new to Gnuplot and I have installed Gnuplot.py recently. I = am getting the following bug when i run the test.py... File "test.py", line 284, in ? main() File "test.py", line 64, in main g.plot(Gnuplot.Func('sin(x)')) File "C:\Python22\Gnuplot\_Gnuplot.py", line 274, in plot self.refresh() File "C:\Python22\Gnuplot\_Gnuplot.py", line 215, in refresh self(self.plotcmd + ' ' + string.join(plotcmds, ', ')) File "C:\Python22\Gnuplot\_Gnuplot.py", line 199, in __call__ self.gnuplot(s) File "C:\Python22\Gnuplot\gp_win32.py", line 125, in __call__ self.write(s + '\n') IOError: [Errno 22] Invalid argument Kindly help... Thanks in advance Best regards Vikram ------------------------------------------ PhD Student Wolfson School of Mechanical and Manufacturing Engg. Loughborough University, Leics, LE11 3TU Tel: +44 1509 22 7534 Email: V.S...@lb... Web : = http://www.lboro.ac.uk/departments/mm/research/mechanics-adv-materials/in= dex.html |
From: Grant E. <gr...@vi...> - 2007-03-21 20:28:20
|
I've been using gnuplot-py to plot 2D and 3D wireframes for a while. Now I need to make my programs a little more interactive: the user needs to be able to select lines and points by clicking on them with a mouse. I have found examples of how to do this in Python: http://www.physik.tu-dresden.de/~baecker/python/GnuplotBiDir.py However, that Gnuplot class doesn't have many of the features of gnuplot-py. I'm thinking it would be easier to add mouse-click handling to gnuplot-py than it would be to change my programs to use the above class for the plotting. Has anybody else worked on supporting mouse interaction using gnuplot-py? -- Grant Edwards gr...@vi... |
From: Jeremy C. <jer...@gm...> - 2007-03-15 20:30:41
|
I am trying to figure out how to plot 3D data. I began with the script " demo.py" that comes with the gnuplot-py distribution. I am only changing what function is plotted but I get the error copied at the end of this email. I am using just a minimal script (also copied below). The formula for m which is commented out does not work, but the current formula for m does work. Can someone help me understand what the problem is? Thanks, Jeremy import scipy import Gnuplot def main(): x = scipy.arange(35)/2.0 y = scipy.arange(30)/10.0-1.5 xdat = x[:,None] ydat = y[None,:] m = (scipy.sin(xdat) + 0.1*xdat) - ydat**2 # m = scipy.sin(scipy.sqrt(xdat**2+ydat**2))/scipy.sqrt(xdat**2+ydat**2) print "len(x): %s" %len(x) print "len(y): %s" %len(y) print "len(m): %s" %len(m) dat = Gnuplot.GridData(m,x,y, binary=0) Chart = Gnuplot.Gnuplot(debug=1) Chart('set pm3d') Chart('set parametric') Chart('set data style lines') Chart('set hidden') Chart('set contour base') Chart.splot(dat) main() python learnGnuplot.py len(x): 35 len(y): 30 len(m): 35 gnuplot> set terminal aqua gnuplot> set parametric gnuplot> set data style lines gnuplot> splot "/tmp/tmpf2ZHuU.gnuplot/fifo" notitle gnuplot> splot "/tmp/tmpf2ZHuU.gnuplot/fifo" notitle ^ line 0: 2 columns only possible with explicit pm3d style (line 16) Exception in thread FIFO Writer for /tmp/tmpf2ZHuU.gnuplot/fifo: Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/threading.py", line 460, in __bootstrap self.run() File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/Gnuplot/PlotItems.py", line 448, in run f.write(self.content) IOError: [Errno 32] Broken pipe |