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
(1) |
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
(1) |
26
|
27
|
28
|
29
|
30
|
|
|
|
|
|
|
From: Ajay G. <aja...@gm...> - 2007-09-25 11:29:27
|
Hi all! I have started using gnuplot.py very recently, and my only learning has been through 'gnuplot>help' and google>gnuplot.py. I am trying to plot daily statistics for my utility. I have datetime objects coming from the db alongwith other fields. I want to use the dates on the xaxis. I tried to do something like the following: a) extract dates from the records in the form of a list, say DL. b) convert DL to an array: dArray = array(DL) c) myPlot = Gnuplot.Data(dArray, anotherArray, title='x') but it gives the following error: * myPlot = Gnuplot.Data(dArray, anotherArray, title='x') ** 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. * I have ensured that the length of both the arrays are same. The only thing which is different si that for dArray it shows dType=|S10, while for 'anotherArray' it doesnt show any dType. Any help is much appreciated. Thanks Ajay |
From: Andrew S. <and...@va...> - 2007-09-12 21:47:49
|
Hello all. I have a snippet of code which seems to indicate a memory leak when run using python 2.4 (not tested under other versions). <===================> import Gnuplot x=range(0,100,1) y=range(3,503,5) case=1 w=Gnuplot.Gnuplot() for iter in range(1000): print iter if case==1: d1=Gnuplot.Data(x,y) else: f1='/tmp/file123' f1h=open(f1,'w') for v1,v2 in zip(x,y): f1h.write('%s %s\n' % (v1,v2)) f1h.close() d1=Gnuplot.File(f1) raw_input() <=====================> When case=1, a large amount of memory is consumed (check ps or top) I get about 20meg and it depends on the number of iterations. When case!=1, the memory usage is quite small, less than 4meg and is independent of iterations. Obviously, the problem appears to be in the Gnuplot.Data() function, but I have not been able to track it down. It does not appear to be related to the data passing type (fifo, inline, or temp files) Andrew |