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
(2) |
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
(2) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
From: Michael H. <mh...@al...> - 2008-03-14 18:08:42
|
Mark Alford wrote: > I have been using gnuplot-py-1.7 for many years. > I would like to help testing/development of gnuplot-py-1.8 under Fedora > Core Linux. But I don't know how to get the latest version. I have never > used subversion. > > Could someone tell me a simple series of steps for downloading > the latest version of the code? Your help is much appreciated. It's been a long time since Gnuplot.py has had any serious maintenance. To check out the current trunk version, type: svn co https://gnuplot-py.svn.sourceforge.net/svnroot/gnuplot-py/trunk gnuplot-py This will create a subdirectory called "gnuplot-py" under your current directory containing the current cvs2svn source code. Once you have made some changes, you can create a patch by typing "svn diff" in the gnuplot-py directory. Please test any changes against the test suite to make sure you haven't broken anything. Michael |
From: Mark A. <al...@wu...> - 2008-03-14 16:30:43
|
I have been using gnuplot-py-1.7 for many years. I would like to help testing/development of gnuplot-py-1.8 under Fedora Core Linux. But I don't know how to get the latest version. I have never used subversion. Could someone tell me a simple series of steps for downloading the latest version of the code? Thank you Mark |
From: Andriy G. <av...@ic...> - 2008-03-13 18:19:48
|
It seems that there is a bug in Gnuplot/utils.py write_array for the case of 2 dimensional array. I use gnuplot.py 1.7 with python 2.5 on FreeBSD. for point in set[1:]: f.write(nest_sep + nest_prefix) f.write(fmt % tuple(point.tolist())) I think that write_array is called with array as a parameter, not a regular list and it seems that slice syntax is not exactly applicable to arrays in the same way as it is for lists. It seems that no iterations actually happened and only data for set[0] was written to a file. I had to change the quoted code to the following: for point in set.tolist()[1:]: f.write(nest_sep + nest_prefix) f.write(fmt % tuple(point)) The problem was doing stuff like the following: x = Numeric.arange(10) / 10. y = Numeric.sin(x) g = Gnuplot.Gnuplot() g.plot(Gnuplot.Data(x,y)) Only one point was plotted. P.S. I think that this link pretty well describes things for python 2.5 and Numeric (array): http://projects.scipy.org/pipermail/numpy-discussion/2006-November/024428.html -- Andriy Gapon |
From: Michael H. <mh...@al...> - 2008-03-05 20:57:39
|
Mustafa Burak Boz wrote: > I want to plot a second histogram on the top the first one. Is there a > way to do that with gnuplot.py ? Sorry, I don't think gnuplot even supported histograms when Gnuplot.py was written, and right now nobody is actively maintaining Gnuplot.py. (Volunteers always welcome!) Michael |
From: Mustafa B. B. <mbu...@gm...> - 2008-03-05 20:22:58
|
Hi there, I want to plot a second histogram on the top the first one. Is there a way to do that with gnuplot.py ? here is the script that I use to generate the first histogram: g=Gnuplot.Gnuplot(persist=1) max_x=find_max_x(x_y) max_y=find_max_y(x_y) g("set style data histograms ") g("set style fill solid 1.0 border -1") g("set xrange [0:"+str(max_x)+"]") g("set yrange [0:"+str(max_y+10)+"]") graph=Gnuplot.Data(x_y,with="boxes 3") g.plot(graph) g.hardcopy(of1+".ps",enhanced=1,color=1) In the Gnuplot manual, it is described like this: newhistogram { "title" } { <linestyle> }. For example set style histogram cluster plot newhistogram "Set A", ’a’ using 1, ’’ using 2, ’’ using 3, \ newhistogram "Set B", ’b’ using 1, ’’ using 2, ’’ using 3 How can I do this in gnuplot.py and does g.hardcopy method give me the graph of 2 hostograms ? Thank in advance... mbb |