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
|
16
|
17
|
18
(1) |
19
(2) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
From: Alan G I. <ai...@am...> - 2005-08-19 22:21:26
|
Nicola Kaiser wrote: > is there any method which I haven=C2=B4t found yet in=20 > gnuplot.py to get what > would otherwise be printed on stdout? Maybe you could change class GnuplotProcess to use popen2 instead of popen? fwiw, Alan Isaac=0D |
From: Michael H. <mh...@al...> - 2005-08-19 18:15:16
|
Hello, There is no provision in Gnuplot.py for this. Regarding your attempt, I'm pretty sure that setting sys.stdout doesn't have any effect on spawned programs. And certainly not after the program is already running. Why don't you write the PNG to a temporary file then read that? Michael Nicola Kaiser wrote: > is there any method which I haven=B4t found yet in gnuplot.py to get wh= at > would otherwise be printed on stdout? >=20 > What I actually want to do is to set my terminal to png and have the > binary-png-code stored in a string instead of a file or piped to stdout. >=20 > I treid something like: >=20 > p=3DGnuplot.Gnuplot(debug=3D1) > p('set terminal png') > oldstdout=3Dsys.stdout > output=3DcStringIO.StringIO() # IO-String instanzieren > sys.stdout=3Doutput # stdout nach output umleiten > p.plot([[1,0],[2,50],[3,0],[4,20],[5,0],[6,30],[7,70], [8,70], [9, 75], > [10, 50], [11, 30], [12, 50]]) >=20 >=20 > sys.stdout=3Doldstdout > print output.getvalue() >=20 > But unfortunatelly I also get other stuff like > "gnuplot: unable to open display '' > "gnuplot: X11 aborted" >=20 > Can anyone help me on that? |
From: Nicola K. <Nic...@ur...> - 2005-08-18 22:32:32
|
Hi, is there any method which I haven=B4t found yet in gnuplot.py to get = what=20 would otherwise be printed on stdout? What I actually want to do is to set my terminal to png and have the=20 binary-png-code stored in a string instead of a file or piped to=20 stdout. I treid something like: p=3DGnuplot.Gnuplot(debug=3D1) p('set terminal png') oldstdout=3Dsys.stdout output=3DcStringIO.StringIO() # IO-String instanzieren sys.stdout=3Doutput # stdout nach output umleiten p.plot([[1,0],[2,50],[3,0],[4,20],[5,0],[6,30],[7,70], [8,70], [9, 75],=20= [10, 50], [11, 30], [12, 50]]) sys.stdout=3Doldstdout print output.getvalue() But unfortunatelly I also get other stuff like "gnuplot: unable to open display '' "gnuplot: X11 aborted" Can anyone help me on that? Thanks, Nicola |