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
(2) |
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
(2) |
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
From: Jim K. <jek...@kl...> - 2004-08-25 16:01:45
|
Seth Lesky wrote: > > I apologize in advance if this has been brought up somewhere before, > > Gnuplot on Windows exits immediately when the python script exits. Is > there a nice way of preventing this without a call to time.sleep()? > > Regards, > SL In the past, a call to g.gnuplot.gnuplot.close() in some circumstances would cause the popen() to wait until closed. Give that a try and see if it helps. Jim |
From: Seth L. <se...@em...> - 2004-08-25 02:16:05
|
I apologize in advance if this has been brought up somewhere before, Gnuplot on Windows exits immediately when the python script exits. Is there a nice way of preventing this without a call to time.sleep()? Regards, SL |
From: Fernando P. <Fer...@co...> - 2004-08-04 04:53:44
|
Alan G Isaac wrote: > As a new SciPy user, I am interested in understanding > the relationship between the scipy.gplt module and the > Gnuplot.py project. > > What considerations influence which was chosen, and > which a new user should choose? > > This is especially important to me as I am planning > to use one of these in a teaching setting. If you decide to use Gnuplot.py, you may want to consider using it through ipython (http://ipython.scipy.org). Ipython, via the IPython.GnuplotRuntime and .GnuplotInteractive modules, adds substantial functionality on top of the default Gnuplot.py, to make interactive work as easy and efficient as possible. There are also some enhancements for scripted use, which facilitate common plotting tasks and EPS generation. I personally decided to use Gnuplot.py (with my enhancements in ipython), because I found the interface to be cleaner than that exhibited by scipy.gplt. This is probably due to the fact that gplt was trying to keep a consistent interface across scipy's 3 plotting subsystems. Note that I use the rest of scipy extensively, it's only for plotting that I decided to use an alternate solution. You may also consider matplotlib, which IMHO holds a lot of promise. I am currently working on a multithreaded version of ipython so it can be used interactively with matplotlib and the Wx/gtk frontends (the Tk one already works fine). Best, f |
From: Alan G I. <ai...@am...> - 2004-08-04 03:08:27
|
As a new SciPy user, I am interested in understanding the relationship between the scipy.gplt module and the Gnuplot.py project. What considerations influence which was chosen, and which a new user should choose? This is especially important to me as I am planning to use one of these in a teaching setting. Thank you, Alan Isaac |