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
(1) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
(2) |
30
|
31
(1) |
|
|
From: <kai...@t-...> - 2003-07-14 19:08:53
|
Hello, I don't use Windows, so I won't be of much help. Therefore, I am forwarding your question to the gnuplot-users mailing list, where several windows users are subscribed and might have ideas. It sounds vaguely like the gnuplot program was never started. One thing appears incorrect in your attempt: > I also tried to type: > Gnuplot.GnuplotOpts.gnuplot_command = "C:\Programmi\gp373w32\pgnuplot" Because of Python's treatment of backslashes in strings, I think you want to type either Gnuplot.GnuplotOpts.gnuplot_command = "C:\\Programmi\\gp373w32\\pgnuplot" or Gnuplot.GnuplotOpts.gnuplot_command = r"C:\Programmi\gp373w32\pgnuplot" Maybe that will help. Michael Giorgio Fagiolo wrote: >Dear Michael: I've just successfully completed the installation of >Gnuplot.py on a machine running Windows XP Home. I followed all your >instuctions but something seems not working properly. In particular, I've >been trying to type the following lines (in the Pythonwin interactive >window): > > > >>>>import Gnuplot >>>>import Gnuplot.funcutils >>>>g = Gnuplot.Gnuplot(debug=1) >>>>g.plot([[0,1.1], [1,5.8], [2,3.3], [3,4.2]]) >>>> >>>> > >But then it gives me the following: > >Traceback (most recent call last): > File "<interactive input>", line 1, in ? > File "c:\python22\Lib\site-packages\Gnuplot\_Gnuplot.py", line 281, in >plot > self.refresh() > File "c:\python22\Lib\site-packages\Gnuplot\_Gnuplot.py", line 222, in >refresh > self(self.plotcmd + ' ' + string.join(plotcmds, ', ')) > File "c:\python22\Lib\site-packages\Gnuplot\_Gnuplot.py", line 206, in >__call__ > self.gnuplot(s) > File "c:\python22\Lib\site-packages\Gnuplot\gp_win32.py", line 122, in >__call__ > self.write(s + '\n') >IOError: [Errno 22] Invalid argument > >Just to give you more info: I have Gnuplot.py correctly installed under >C:\Python22\Lib\site-packages\Gnuplot while GnuPlot (windows version >including pgnuplot.exe) is installed under C:\Programmi\gp373w32. > >I also tried to type: >Gnuplot.GnuplotOpts.gnuplot_command = "C:\Programmi\gp373w32\pgnuplot" >but it does not work. >Could you possibly help me out with this problem? Thanks in advance, >Giorgio Fagiolo > -- Michael Haggerty mh...@al... |