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
(3) |
4
(2) |
5
(1) |
6
(3) |
7
(1) |
8
|
9
(1) |
10
|
11
|
12
|
13
|
14
|
15
|
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
From: Michael H. <mh...@al...> - 2005-05-07 03:16:53
|
Hi, The problem is a little bit obscure. You are passing splot() a 2-D array, but it really wants a 3-D array (the third axis would accomodate multiple data at each (x,y) point. Probably this should be handled better, but a solution for you is to add a third axis explicitly: g.splot(a[..., N.NewAxis]) At least that works for me. Michael Mark Thomas wrote: > I have been producing 2d arrays in python containing z values that I would > like to plot then turn into animated gifs. Up until now I have been using > gist (pli) to plot them. However, gist is very limited in the output file > formats and I can't get any of the output file formats into for example > Python Imaging Library in order to make animated gifs. So I decided to try > drawing plots with Gnuplot in python. I have tried various examples that > work in gnuplot but not when I try to put them into python. > > An example is below (adapted from > http://gnuplot.sourceforge.net/demo/pm3d.html): > > > import Gnuplot > import numarray as N > g = Gnuplot.Gnuplot(debug=1) > # set terminal png transparent nocrop enhanced font arial 8 size 420,320 > # set output 'pm3d.9.png' > g('set border 4095 lt -1 lw 1.000') > g('set view map') > g('set samples 30, 30') > #g('set isosamples 30, 30') > g('unset surface') > g('set style data pm3d') > g('set style function pm3d') > g('set ticslevel 0') > g('set title "colour map, using default rgbformulae 7,5,15 ... traditional > pm3d (black-blue-red-yellow)" 0.000000,0.000000 font ""') > g('set xlabel "x" 0.000000,0.000000 font ""') > g('set xrange [0:30] ') > g('set ylabel "y" 0.000000,0.000000 font ""') > g('set yrange [ 0:30]') > g('set y2range [ * : * ] reverse nowriteback # (currently > [-10.0000:10.0000] )') > g('set zrange [ 0.0001 : 1.00000 ] noreverse nowriteback') > g('set pm3d at b') > > > a = N.zeros([30,30]) +.3 > a[5:10,1:22] = .9 > g.splot(a) > > Any thoughts would be greatly appreciated. |