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
(1) |
10
|
11
|
12
(2) |
13
(4) |
14
(4) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
(2) |
29
(2) |
30
|
31
|
From: Andreas T. <ti...@rk...> - 2002-08-14 11:42:59
|
On Wed, 14 Aug 2002, Michael Haggerty wrote: > For just setting tables and line types and stuff you don't have to > extend the PlotItem interface directly; you can use the Data class > which is a type of PlotItem already customized for array data. > > There are many examples in demo.py about how to use the Data class. > For example, > > x = arange(10, typecode=Float) > y1 = x**2 > d = Gnuplot.Data(x, y1, > title='calculated by python', > with='points 3 3') Ahh, now this is clear. I just was 'grep'ing for PlotItem and did not found this keyword. The reason is that I'm quite a Python beginner, sorry. > You would do something like the following (untested): > > g.plot( > Gnuplot.Data(X, title='This is the X dataset', with='linespoints'), > Gnuplot.Data(Y, title='Some more data', with='points 2 5'), > ) I've got the point now. Thanks for this fine software! > Please subscribe. The list has an archive but since the list is very > new there are only a few messages in it. I'll do so for my next question ;-). The amount of lists I'm subscribed is quite high but if this is a low volume list I can cope with this. Kind regards Andreas. |
From: Michael H. <hag...@jp...> - 2002-08-14 11:12:57
|
Andreas Tille writes: > Unfortunately I have real trouble using PlotItem. For just setting tables and line types and stuff you don't have to extend the PlotItem interface directly; you can use the Data class which is a type of PlotItem already customized for array data. There are many examples in demo.py about how to use the Data class. For example, x = arange(10, typecode=Float) y1 = x**2 d = Gnuplot.Data(x, y1, title='calculated by python', with='points 3 3') So for your example, > #!/usr/bin/python > > import Gnuplot, Gnuplot.funcutils > > X = [] > Y = [] > for x in range(32): > X.append((x, 2*x )) > Y.append((x, 3*x )) > > g = Gnuplot.Gnuplot(debug=1) > > g.plot(X, Y) > raw_input('Please press return to continue...\n') You would do something like the following (untested): g.plot( Gnuplot.Data(X, title='This is the X dataset', with='linespoints'), Gnuplot.Data(Y, title='Some more data', with='points 2 5'), ) > PS: I'm not yet subscribed to this list and would be happy about a CC > because a list archive does not seem to be available. Please subscribe. The list has an archive but since the list is very new there are only a few messages in it. Michael -- Michael Haggerty hag...@jp... |
From: Michael H. <hag...@jp...> - 2002-08-14 10:47:40
|
Marc French writes: > After renaming the folder to 'Gnuplot', I am able to import it, but > when running demo,test, or using the command line I am not able to > get Gnuplot to open and show a simple plot. Can you run gnuplot (the graphics program itself) from your command line by typing pgnuplot.exe? You need a version of the program that can read commands from stdin, which usually has this name. If it is not in your PATH, then add it. If it has a different name, then change the GnuplotOpts.gnuplot_command setting in gp_win32.py. Michael -- Michael Haggerty hag...@jp... |
From: Andreas T. <ti...@rk...> - 2002-08-14 06:35:16
|
Hello, I just tried Gnuplot-py and regard it very valu to solce a certain job. Unfortunately I have real trouble using PlotItem. The documentation says: For the finest control over the output, you can create PlotItems yourself with additional keyword options, or derive new classes from PlotItem. But as a Python beginner I seem to have trouble to understand the syntax. I started with a fairly simple example: #!/usr/bin/python import Gnuplot, Gnuplot.funcutils X = [] Y = [] for x in range(32): X.append((x, 2*x )) Y.append((x, 3*x )) g = Gnuplot.Gnuplot(debug=1) g.plot(X, Y) raw_input('Please press return to continue...\n') Now I wanted to use PlotItem objects for X and Y to get finer control about titles and style because the quite simple 2*x and 3*x will be replaced by some more sophisticated database queries and further plots will be added. But I do really not understand how to instantiate PlotItems and there is no example available. Could you please provide some simple examples? Thanks for this fine software Andreas. PS: I'm not yet subscribed to this list and would be happy about a CC because a list archive does not seem to be available. |