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) |
2
|
3
|
4
|
5
|
6
|
7
|
8
(1) |
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
(1) |
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
From: Martin R. <mar...@gm...> - 2007-10-21 13:17:11
|
hi, The new gnuplot uses 'wxt' as default terminal on unix which looks a lot nicer than 'x11'. And as you already know, pipes + mouse zoom don't work together. For me, mouse zoom is a very important feature. So as long as there is no better solution, could you please change the defaults? I'm sure most users would benefit from this. bye, Martin Renold Index: gp_unix.py =================================================================== --- gp_unix.py (revision 299) +++ gp_unix.py (working copy) @@ -81,14 +81,14 @@ support_fifo = 1 # Should FIFOs be used to send data to gnuplot by default? - prefer_fifo_data = 1 + prefer_fifo_data = 0 # After a hardcopy is produced, we have to set the terminal type # back to `on screen' using gnuplot's `set terminal' command. The # following is the usual setting for Xwindows. If it is wrong, # change the following line to select the terminal type you prefer # to use for on-screen work. - default_term = 'x11' + default_term = 'wxt' # Gnuplot can plot to a printer by using "set output '| ...'" # where ... is the name of a program that sends its stdin to a |
From: Michael H. <mh...@al...> - 2007-10-01 13:24:51
|
Ajay Gupta wrote: > I want to plot a series where some of the data points are missing. I > have come to know that gnuplot support 'set datafile missing' command > using which you can specify a missing y value with any character like > '?', or '-' in the datafile input. > > How do i do this when using gnuplot.py? If I set one of the elements of > the input array to '?', it gives the following error: There is no support in Gnuplot.py for missing data, but you can easily define your own PlotItem that knows about missing values. It might make sense to use numpy's masked arrays for this purpose. Or you can just write the values to a file (with question marks where appropriate) and plot it from there. Michael |
From: Ajay G. <aja...@gm...> - 2007-10-01 11:05:05
|
Hi All. I want to plot a series where some of the data points are missing. I have come to know that gnuplot support 'set datafile missing' command using which you can specify a missing y value with any character like '?', or '-' in the datafile input. How do i do this when using gnuplot.py? If I set one of the elements of the input array to '?', it gives the following error: [211 16:22:15] python plotseries.py Traceback (most recent call last): File "plotseries.py", line 212, in ? myPlot = Gnuplot.Data(arange(maxDays), myDataPoints, title='my series data', with="linespoints") File "/usr/lib/python2.4/site-packages/Gnuplot/PlotItems.py", line 526, in Data set = utils.float_array(set) File "/usr/lib/python2.4/site-packages/Gnuplot/utils.py", line 38, in float_array return Numeric.asarray(m, Numeric.float32) File "/usr/lib64/python2.4/site-packages/numpy/oldnumeric/functions.py", line 87, in asarray return mu.array(a, dtype, copy=0) ValueError: setting an array element with a sequence. Thanks in anticipation, Ajay |