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
(1) |
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
(1) |
10
|
11
|
12
|
13
|
14
|
15
(1) |
16
|
17
|
18
|
19
|
20
|
21
|
22
(1) |
23
(1) |
24
(2) |
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
From: Benny M. <ben...@gm...> - 2008-09-24 17:55:29
|
Ok, but if you can do it in gnuplot, you can pass your own commands directly via the pipe, see http://gnuplot-py.sourceforge.net/doc/Gnuplot/__init__.html So in gnuplot it works to do: gnuplot> plot x*x lc rgbcolor "blue" Hence, in python we can do: python Python 2.5.2 (r252:60911, Jul 31 2008, 17:31:22) [GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import Gnuplot >>> g1 = Gnuplot.Gnuplot() >>> g1('plot x*x lc rgbcolor "blue"') >>> g1('replot x lc rgbcolor "red"') >>> As you can make the above dynamic in your python script, you can do all. As for index, I don't understand what you want to achieve, g1 above holds the plot Hope this helps Benny 2008/9/24 Eric S. Johansson <es...@ha...> > Benny Malengier wrote: > > Look in the gnuplot manual. You can do gnuplot commands with gnuplot-py. > > Also have a look in the test file in subversion. > > I took a look at the test file and it had nothing about color is that I > could > see. Yes, some of the method calls had color for an argument but it made > no > sense. Reading from the canoe plot manual, I tried to use the line style > but, > that also failed. I also couldn't see how to associate a particular index > with > a plot. > > gnuplot> plot '/tmp/tmpVLMckL' notitle > gnuplot> plot '/tmp/tmpKwgJDc' notitle, '/tmp/tmpUPRlPx' notitle > gnuplot> set title "Plot of generation score_002000" > gnuplot> set object 1 rect from -5,0 to 5,500 fc rgb "#3366ff" > gnuplot> set xrange[-100:100] > gnuplot> set yrange[0:100] > gnuplot> set autoscale fix > gnuplot> set terminal gif > gnuplot> set style line 0 lc rbgcolor red > gnuplot> set style line 1 lc rbgcolor blue > gnuplot> set output "plot/image_score_002000.gif" > gnuplot> plot '/tmp/tmpYGhnBq' notitle > gnuplot> plot '/tmp/tmpcSr0gh' notitle, '/tmp/tmpL1XY2s' notitle > > gnuplot> set style line 0 lc rbgcolor red > ^ > line 0: tag must be > zero > > line 0: undefined variable: rbgcolor > > > > > > Benny > > > > 2008/9/22 Eric S. Johansson <es...@ha... <mailto:es...@ha...>> > > > > I'm trying to put before and after plots on the same image and I > > need each plot > > to be in a different color. How do I specify the color change in > > the plot method? > > > > thanks > > > > ---eric > > > > > ------------------------------------------------------------------------- > > This SF.Net email is sponsored by the Moblin Your Move Developer's > > challenge > > Build the coolest Linux based applications with Moblin SDK & win > > great prizes > > Grand prize is a trip for two to an Open Source event anywhere in > > the world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > <http://moblin-contest.org/redirect.php?banner_id=100&url=/> > > _______________________________________________ > > Gnuplot-py-users mailing list > > Gnu...@li... > > <mailto:Gnu...@li...> > > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > > > > > |
From: Eric S. J. <es...@ha...> - 2008-09-24 16:23:21
|
Benny Malengier wrote: > Look in the gnuplot manual. You can do gnuplot commands with gnuplot-py. > Also have a look in the test file in subversion. I took a look at the test file and it had nothing about color is that I could see. Yes, some of the method calls had color for an argument but it made no sense. Reading from the canoe plot manual, I tried to use the line style but, that also failed. I also couldn't see how to associate a particular index with a plot. gnuplot> plot '/tmp/tmpVLMckL' notitle gnuplot> plot '/tmp/tmpKwgJDc' notitle, '/tmp/tmpUPRlPx' notitle gnuplot> set title "Plot of generation score_002000" gnuplot> set object 1 rect from -5,0 to 5,500 fc rgb "#3366ff" gnuplot> set xrange[-100:100] gnuplot> set yrange[0:100] gnuplot> set autoscale fix gnuplot> set terminal gif gnuplot> set style line 0 lc rbgcolor red gnuplot> set style line 1 lc rbgcolor blue gnuplot> set output "plot/image_score_002000.gif" gnuplot> plot '/tmp/tmpYGhnBq' notitle gnuplot> plot '/tmp/tmpcSr0gh' notitle, '/tmp/tmpL1XY2s' notitle gnuplot> set style line 0 lc rbgcolor red ^ line 0: tag must be > zero line 0: undefined variable: rbgcolor > > Benny > > 2008/9/22 Eric S. Johansson <es...@ha... <mailto:es...@ha...>> > > I'm trying to put before and after plots on the same image and I > need each plot > to be in a different color. How do I specify the color change in > the plot method? > > thanks > > ---eric > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win > great prizes > Grand prize is a trip for two to an Open Source event anywhere in > the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > <http://moblin-contest.org/redirect.php?banner_id=100&url=/> > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > <mailto:Gnu...@li...> > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > > |
From: Benny M. <ben...@gm...> - 2008-09-23 19:22:49
|
Look in the gnuplot manual. You can do gnuplot commands with gnuplot-py. Also have a look in the test file in subversion. Benny 2008/9/22 Eric S. Johansson <es...@ha...> > I'm trying to put before and after plots on the same image and I need each > plot > to be in a different color. How do I specify the color change in the plot > method? > > thanks > > ---eric > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > |
From: Eric S. J. <es...@ha...> - 2008-09-22 16:50:39
|
I'm trying to put before and after plots on the same image and I need each plot to be in a different color. How do I specify the color change in the plot method? thanks ---eric |
From: bryan a. <bry...@ya...> - 2008-09-15 05:12:53
|
Hi, Can anyone show me how to read data from a text file them plot it. Thanks Bryan Asis |
From: Johannes R. <jo...@si...> - 2008-09-09 10:12:19
|
Hi again, By looking at the temporary files that Gnuplot.py generates, I finally found out why I keep getting this warning. It is caused by the fact that there is two newline characters at the end of these temporary files. I removed one of the newlines and the warning was gone. To do this, simply comment out the last line in the function write_array in utils.py: - f.write(nest_suffix) + #f.write(nest_suffix) Hopefully, this will be fixed in the next release of Gnuploy.py. Johannes On Mon, September 1, 2008 10:53, Johannes Ring wrote: > Hi, > > when I run the test.py script the following warning appears several times: > > Notice: Cannot contour non grid data. Please use "set dgrid3d". > > Is there a way to get rid of this message? I am using the latest sources > from the SVN repository. > > If anyone can help me out, or point me to where to look in the code, I > would be very happy. > > Thanks, > Johannes > > $ python test.py > ... > gnuplot> set parametric > gnuplot> set data style lines > gnuplot> set hidden > gnuplot> set contour base > gnuplot> set xlabel "x" > gnuplot> set ylabel "y" > Notice: Cannot contour non grid data. Please use "set dgrid3d". > gnuplot> splot "/tmp/tmpKGm5yj.gnuplot/fifo" notitle > Same thing, saved to a file > Press return to show results... > > Notice: Cannot contour non grid data. Please use "set dgrid3d". > gnuplot> splot "/tmp/tmp9ReqTN" > Same thing, inline data > Press return to show results... > > gnuplot> splot "-" notitle > The same thing using binary mode > Press return to show results... > Notice: Cannot contour non grid data. Please use "set dgrid3d". > > ... > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > |
From: Johannes R. <jo...@si...> - 2008-09-01 08:53:37
|
Hi, when I run the test.py script the following warning appears several times: Notice: Cannot contour non grid data. Please use "set dgrid3d". Is there a way to get rid of this message? I am using the latest sources from the SVN repository. If anyone can help me out, or point me to where to look in the code, I would be very happy. Thanks, Johannes $ python test.py ... gnuplot> set parametric gnuplot> set data style lines gnuplot> set hidden gnuplot> set contour base gnuplot> set xlabel "x" gnuplot> set ylabel "y" Notice: Cannot contour non grid data. Please use "set dgrid3d". gnuplot> splot "/tmp/tmpKGm5yj.gnuplot/fifo" notitle Same thing, saved to a file Press return to show results... Notice: Cannot contour non grid data. Please use "set dgrid3d". gnuplot> splot "/tmp/tmp9ReqTN" Same thing, inline data Press return to show results... gnuplot> splot "-" notitle The same thing using binary mode Press return to show results... Notice: Cannot contour non grid data. Please use "set dgrid3d". ... |