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
|
13
|
14
|
15
|
16
(4) |
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
From: Shibnath P. <shi...@gm...> - 2009-12-16 16:14:50
|
Hi, Thanks to all for reply. I solved that problem. Now I am facing one new problem. When I am using "set terminal postscript enhanced color " to save the graph in .ps for multi plotting (three curves in one page ) the curves are coming deferent color but the lines are not solid even I declared that g('set data style lines'). Thank you Shibnath On Wed, Dec 16, 2009 at 10:50 AM, Shibnath Pathak <shi...@gm...>wrote: > Hi, > > I am new to python and gunplot.py . But I am quite familiar with Gnuplot. > So in Gnuplot to plot a file I used " gnuplot> plot "filename" using 1:2 > with lines ". The file is in text form and the data are saving there in two > column 1st one is x axis and 2nd one is Y axis. > > In Gnuplot.py I try to plot same file like this " > > from numpy import * > import Gnuplot, Gnuplot.funcutils > g = Gnuplot.Gnuplot(debug=1) > g.title('A simple example') # (optional) > f = open('filename', 'r' ) > g.plot(f, using = (1,2), with_='lines') > raw_input('Please press return to continue...\n') > > > But I didn't get any plot. > So please help me. > > Thank you in advance. > > -- > Shibnath Pathak > > -- Shibnath Pathak |
From: Michael H. <mh...@al...> - 2009-12-16 15:30:35
|
Shibnath Pathak wrote: > I am new to python and gunplot.py. [...] I suggest you start by running the demo: python demo.py and looking at the heavily documented source code of demo.py to learn the basics. After that you can read the documentation strings in the other Gnuplot.py modules, especially _Gnuplot.py and PlotItems.py. Michael |
From: Andrzej N. <no...@gm...> - 2009-12-16 15:22:26
|
Hi, It looks like you are passing Python file handle to g.plot(). If you are trying to plot data in a file, I think it expects Gnuplot.File object. I don't know if it will handle a string of filename automatically, since a string could be an equation as well. Look at help(g.plot) and help(Gnuplot.File) for more information. Regards, Andrzej > From: Shibnath Pathak <shi...@gm...> > To: gnu...@li... > Subject: [Gnuplot-py-users] problem with calling a file. > Date: Wed, 16 Dec 2009 10:50:25 +0100 > > Hi, > > I am new to python and gunplot.py . But I am quite familiar with Gnuplot. So > in Gnuplot to plot a file I used " gnuplot> plot "filename" using 1:2 with > lines ". The file is in text form and the data are saving there in two > column 1st one is x axis and 2nd one is Y axis. > > In Gnuplot.py I try to plot same file like this " > > from numpy import * > import Gnuplot, Gnuplot.funcutils > g = Gnuplot.Gnuplot(debug=1) > g.title('A simple example') # (optional) > f = open('filename', 'r' ) > g.plot(f, using = (1,2), with_='lines') > raw_input('Please press return to continue...\n') > > > But I didn't get any plot. > So please help me. > > Thank you in advance. > > -- > Shibnath Pathak |
From: Shibnath P. <shi...@gm...> - 2009-12-16 09:50:33
|
Hi, I am new to python and gunplot.py . But I am quite familiar with Gnuplot. So in Gnuplot to plot a file I used " gnuplot> plot "filename" using 1:2 with lines ". The file is in text form and the data are saving there in two column 1st one is x axis and 2nd one is Y axis. In Gnuplot.py I try to plot same file like this " from numpy import * import Gnuplot, Gnuplot.funcutils g = Gnuplot.Gnuplot(debug=1) g.title('A simple example') # (optional) f = open('filename', 'r' ) g.plot(f, using = (1,2), with_='lines') raw_input('Please press return to continue...\n') But I didn't get any plot. So please help me. Thank you in advance. -- Shibnath Pathak |