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
(3) |
10
|
11
|
12
|
13
|
14
|
15
|
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
From: Conor R. <con...@gm...> - 2006-11-09 22:43:07
|
Using iCy-fLaME's suggestion I threw this together. Example: #directory I want to save to as str fdir = geo+'/'+str(hidden)+'/'+trial+'/%netval.eps' #set output add quotes g1('set output '+'"'+fdir+'"') #note there was an extra 'set' (typo) in previous example #set terminal g1('set terminal postscript landscape enhanced color') #plot g1.plot(r12, r1, Gnuplot.Func('-x + 1', title = "ave response%"), Gnuplot.Func('x', title = "ave cut%")) This seems to work well. Is this efficient, or what you refer to by 'set manually before plotting' ? I'd like to tighten up the time it takes for report generation albeit a negligible % of the process time. Thanks Conor On 11/9/06, Michael Haggerty <mh...@al...> wrote: > Conor Robinson wrote: > > I'm generating thousands of plots, which I'm storing as ps files as > > records of different trials. For example: > > > > #plot my data > > g2.plot(r22, r2, r21) > > > > #save results of a trial > > g2.hardcopy(trial+'/result.ps', enhanced=1, color=1) > > > > What I would like to do is complete the plot in g2, but suppress the > > visual output and just save a hardcopy to view later if need be. > > Eventually, as expected, AquaTerm will crash as I keep displaying the > > numerous plots. Is there a way to implement this? > > To prevent the terminal output, I think you could use the 'unknown' > terminal type (which appears to send output to nirvana): > > import gp, Gnuplot > > # Set the term value that is restored after a hardcopy: > gp.GnuplotOpts.default_term = 'unknown' > > g = Gnuplot.Gnuplot() > > # Set the initial term value: > g('set term unknown') > > ... > > If you are very worried about efficiency, though, you can't really use > the hardcopy() method at all because it causes the data to be processed > twice (once for 'unknown' then once for your desired hardcopy output > device). If that is a problem, you probably want to set the terminal > and output file manually before plotting anything. > > Michael > |
From: Michael H. <mh...@al...> - 2006-11-09 21:51:10
|
Conor Robinson wrote: > I'm generating thousands of plots, which I'm storing as ps files as > records of different trials. For example: > > #plot my data > g2.plot(r22, r2, r21) > > #save results of a trial > g2.hardcopy(trial+'/result.ps', enhanced=1, color=1) > > What I would like to do is complete the plot in g2, but suppress the > visual output and just save a hardcopy to view later if need be. > Eventually, as expected, AquaTerm will crash as I keep displaying the > numerous plots. Is there a way to implement this? To prevent the terminal output, I think you could use the 'unknown' terminal type (which appears to send output to nirvana): import gp, Gnuplot # Set the term value that is restored after a hardcopy: gp.GnuplotOpts.default_term = 'unknown' g = Gnuplot.Gnuplot() # Set the initial term value: g('set term unknown') ... If you are very worried about efficiency, though, you can't really use the hardcopy() method at all because it causes the data to be processed twice (once for 'unknown' then once for your desired hardcopy output device). If that is a problem, you probably want to set the terminal and output file manually before plotting anything. Michael |
From: Conor R. <con...@gm...> - 2006-11-09 19:22:15
|
I'm generating thousands of plots, which I'm storing as ps files as records of different trials. For example: #plot my data g2.plot(r22, r2, r21) #save results of a trial g2.hardcopy(trial+'/result.ps', enhanced=1, color=1) What I would like to do is complete the plot in g2, but suppress the visual output and just save a hardcopy to view later if need be. Eventually, as expected, AquaTerm will crash as I keep displaying the numerous plots. Is there a way to implement this? I'm running OSX (10.4.8), X11 and AquaTerm, but I'm assuming the method or arguments, if they exist, are universal. Thank you, Conor |