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
(12) |
8
(2) |
9
(2) |
10
|
11
(1) |
12
|
13
|
14
(2) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
(2) |
26
|
27
|
28
|
29
|
30
|
|
|
|
From: Noel O'B. <no...@ca...> - 2005-11-11 09:46:54
|
Dear Michael, I have two questions relating to writing graphs to disk. The first is whether it is possible to do so without first plotting the image on the screen. The second is related to the following problem with using popen, with which I think you are familiar: ************************************************* import Gnuplot,os error = 0 for i in range(50): g = Gnuplot.Gnuplot() d = Gnuplot.Func("sin(x)") g.plot(d) g.hardcopy("gnuplotpy.png",terminal="png") try: assert os.path.getsize("gnuplotpy.png")>0 except AssertionError: error += 1 print error ************************************************* On one run, 27 AssertionErrors were raised out of 50, the problem being that the Python program continues while Gnuplot is still trying to plot the image. This is a particular problem when the Python program ends soon after calling Gnuplot, as the Gnuplot image is often not written to disk. There seems to be no way around this using the popen family of commands apart from waiting until the file is created: ************************************************* size = os.path.getsize("gnuplotpy.png") while size==0: time.sleep(0.2) size = os.path.getsize("gnuplotpy.png") ************************************************* If only Gnuplot returned an exit signal to the calling program, then you could use popen3 or something and wait for stdout to be closed. Unfortunately, this doesn't appear to be the case. On the other hand, the following approach addresses both of the problems listed above, and I am afraid that it is difficult for me to convince myself that using gnuplot-py would be better (for me): ************************************************* import os errors = 0 for i in range(50): cmdfile = open("cmd.txt","w") cmdfile.write('set terminal png\nset output "gnuplotpy.png"\n') cmdfile.write("plot sin(x)\n") cmdfile.close() os.system("pgnuplot.exe cmd.txt") try: assert os.path.getsize("gnuplotpy.png")>0 except AssertionError: errors += 1 print errors ************************************************* errors is always zero, as os.system does not return until the command is completed. Would you consider including os.system in some way in gnuplot-py? Regards, Noel |