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
(1) |
6
(1) |
7
(1) |
8
|
9
|
10
|
11
|
12
|
13
|
14
(3) |
15
|
16
|
17
|
18
(2) |
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
From: Michael H. <mh...@al...> - 2006-06-14 19:03:54
|
Hello, I have created a new mailing list: gnu...@li... This mailing list will automatically receive a message every time that somebody commits something to the Gnuplot.py Subversion repository. People who are interested in following the development of Gnuplot.py should subscribe to the new mailing list by visiting the following web page: https://lists.sourceforge.net/lists/listinfo/gnuplot-py-svn Please continue to use the gnuplot-py-users mailing list for discussions. Michael |
From: Michael H. <mh...@al...> - 2006-06-14 16:33:21
|
John Parejko wrote: > I've been having trouble using multiple replot commands, ie: > > g.plot(Gnuplot.Data(dataset[0])) > for i in xrange(1,len(dataset)): > g.replot(Gnuplot.Data(dataset[i])) > > After about the 40th row in dataset, I start getting errors like this: > > gnuplot> 1961992.5 0.0 2.47496008873 > ^ > line 31995: invalid command > > gnuplot> e It doesn't make sense to use replot() for this, because after each call to replot() the plot is re-drawn (first with 1 dataset, then 2, then 3, etc.) The total work goes like len(dataset)**2. Something like g.plot(*[Gnuplot.Data(d) for d in dataset]) should do the whole thing in one shot. I don't know if the extreme inefficiency is the cause for the failure, but it certainly can't help. > (if inline == 1) and sometimes about bad filenames (seems to be system > dependent) if inline = 0. Eventually the plot seems to come out > correctly, but I can't verify that all the rows are actually being > plotted. Is this a bug, or am I going about this all wrong? I want to > overlay a bunch (~100) of different lines on the same plot, and then > possibly an averaged line in dark black on top of that. > > I can put sample code and plots up somewhere for reference... If it is appropriate to your application, it is also possible to combine multiple curves into a single file by separating them with blank lines. (The blank line basically says "lift the pen before plotting the next point"). There are typically operating system limits on the number of files that may be open at once, which could also cause problems. There might also be limits on the number of named pipes; I'm not sure. Michael |
From: Michael H. <mh...@al...> - 2006-06-14 16:02:10
|
Michael Haggerty wrote: > Is there anybody out there who can program in Python and would be > interested in taking over the maintenance of Gnuplot.py? I am happy to announce that John Parejko has volunteered to work on the Gnuplot.py project. I've just granted him developer privileges at SourceForge. I hope he can give the project some of the care and attention that it has been missing for a long time! That is not, of course, to say that other volunteers are not welcome :-) And everybody is encouraged to chip in, not only with writing code, but also with updating documentation, answering questions on the mailing list, testing, etc, etc... Welcome John! Michael |