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
(2) |
18
(1) |
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
|
From: Tom K. <to...@ko...> - 2004-10-18 03:56:31
|
My error. It's clearly not your problem. I appreciate the debug=1 flag reminder. It certainly showed me that the gnuplot-py module was feeding everything to gnuplot appropriately. So, for the record, if this is the specification: > set terminal aqua {<n>} {title "<wintitle>"} {size <x> <y>} {fname > "<fontface>"} {fsize <fontsize>} Then this is incorrect: > plotobj('set terminal aqua size 800 450 fname "ComputerModern" fsize > 16') And this is correct: plotobj('set terminal aqua 0 title "MyPlot" size 800 450 fname "ComputerModern" fsize 16') Simple. Sorry. Tom |
From: Michael H. <mh...@ka...> - 2004-10-17 21:17:29
|
Tom Kornack wrote: > Is there any access to terminal options? I'm using Mac OS X, so I'd > like to be able to modify the aqua window size, fonts, etc: > > set terminal aqua {<n>} {title "<wintitle>"} {size <x> <y>} {fname > "<fontface>"} {fsize <fontsize>} > > Whenever I try to issue: > > plotobj = Gnuplot.Gnuplot() > plotobj('set terminal aqua size 800 450 fname "ComputerModern" fsize 16') > > and plot something it doesn't seem to take. Where should I look? Hmmm, that's strange. I don't know why that wouldn't work. There is one peculiarity with respect to terminals: after a call to plotobj.hardcopy(), the terminal set has to be set back to the "non-printer" terminal. In practice it does this by setting it back to GnuplotOpts.default_term, which for Mac OS X is set in gp_maxosx.py to be 'aqua'. But if you haven't done a hardcopy() this shouldn't affect you. As with many other problems with Gnuplot.py, try setting the debug option: plotobj = Gnuplot.Gnuplot(debug=1) This will print out each of the commands being sent to the gnuplot program and should help you figure out where the problem lies. Michael -- Michael Haggerty mh...@al... |
From: Tom K. <to...@ko...> - 2004-10-17 20:18:14
|
Is there any access to terminal options? I'm using Mac OS X, so I'd like to be able to modify the aqua window size, fonts, etc: set terminal aqua {<n>} {title "<wintitle>"} {size <x> <y>} {fname "<fontface>"} {fsize <fontsize>} Whenever I try to issue: plotobj = Gnuplot.Gnuplot() plotobj('set terminal aqua size 800 450 fname "ComputerModern" fsize 16') and plot something it doesn't seem to take. Where should I look? Tom |