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
|
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". ... |
From: Benny M. <ben...@gm...> - 2008-08-21 08:05:36
|
This is mailing list for gnuplot-py, not for python or gnuplot. Create a file: ofile = open(filename, 'w') ofile.write(.....) You can plot it directly with gnuplot-py though, see the example file distributed with gnuplot-py Benny 2008/8/20 Fabi Rabarison <fa...@ai...> > Hi, > > I would like to ask a quick question. Suppose that I have a list > > points=[(1,2,3),(4,5,6),(7,8,9)] > > how do I do to create the data file "points.dat", > so that I can use the command > > gnuplot> splot "points.dat" with lines? > > Thanks > -- > Fabi Rabarison > Stellenbosch University > www.aims.ac.za/~fabi <http://www.aims.ac.za/%7Efabi> > > > > > > ------------------------------------------------------------------------- > 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: Fabi R. <fa...@ai...> - 2008-08-20 14:31:29
|
Hi, I would like to ask a quick question. Suppose that I have a list points=[(1,2,3),(4,5,6),(7,8,9)] how do I do to create the data file "points.dat", so that I can use the command gnuplot> splot "points.dat" with lines? Thanks -- Fabi Rabarison Stellenbosch University www.aims.ac.za/~fabi |
From: Mauro B. <MBr...@ed...> - 2008-08-19 14:16:26
|
Thanks for your help, What i don't know what to do now is how to plot a 3d cube in gnuplot using gnuplot.py in an efficient way. Any idea about that? Mauro "Nadav Horesh" <nadavh@visionsen se.com> To Sent by: gnuplot-py-users- <gnu...@li...urceforge bo...@li...u .net> rceforge.net cc Subject 08/18/2008 12:21 Re: [Gnuplot-py-users] solid object PM in plot The cvs version of gnuplot supports semitransparent colours. Start by looking at its docomentation. Nadav -----הודעה מקורית----- מאת: gnu...@li... בשם Mauro Brigante נשלח: ב 18-אוגוסט-08 17:08 אל: gnu...@li... נושא: [Gnuplot-py-users] solid object in plot Hi, I am trying to add to some data plot a semi-transparent solid (a solid box) in a 3d graph. (the 3d analogous of a gnuplot 'box' in 2d) Any idea how to do that? I tried drawing the lines and then using pm3d to color them, but i couldn't get the sides colored. I am using gnuplot.py to interface with python. Thanks, Mauro ------------------------------------------------------------------------- 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 ------------------------------------------------------------------------- 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: Nadav H. <na...@vi...> - 2008-08-18 16:26:25
|
The cvs version of gnuplot supports semitransparent colours. Start by looking at its docomentation. Nadav -----הודעה מקורית----- מאת: gnu...@li... בשם Mauro Brigante נשלח: ב 18-אוגוסט-08 17:08 אל: gnu...@li... נושא: [Gnuplot-py-users] solid object in plot Hi, I am trying to add to some data plot a semi-transparent solid (a solid box) in a 3d graph. (the 3d analogous of a gnuplot 'box' in 2d) Any idea how to do that? I tried drawing the lines and then using pm3d to color them, but i couldn't get the sides colored. I am using gnuplot.py to interface with python. Thanks, Mauro ------------------------------------------------------------------------- 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: Mauro B. <MBr...@ed...> - 2008-08-18 14:08:03
|
Hi, I am trying to add to some data plot a semi-transparent solid (a solid box) in a 3d graph. (the 3d analogous of a gnuplot 'box' in 2d) Any idea how to do that? I tried drawing the lines and then using pm3d to color them, but i couldn't get the sides colored. I am using gnuplot.py to interface with python. Thanks, Mauro |
From: Alan G I. <ai...@am...> - 2008-07-28 17:12:28
|
Get a more recent version, and you will get a more helpful message. As far as I know, your date strings are not yet supported by Data? (See the conversion done by ``utils.float_array``.) Cheers, Alan Isaac |
From: Gerald R. <gd...@gm...> - 2008-07-28 16:41:59
|
Hello all, I appreciate the answer to one of the big questions last week. I am now experiencing some other difficulties and I sure could use some help. I am attempting to plot a set of sensor readings vs. time. I have a mock set of data, and I will show the error message I receive when I run it. Thank you again for the help! import Gnuplot g = Gnuplot.Gnuplot(debug=1) name = 'Plot.png' g('set term png') g('set out "' + name) g('set key outside') g('set xdata time') g('set timefmt "%m/%d/%Y"') g('set title "Yippy"') mylist = [ ('06/01/2000', 81.75), ('07/01/2000', 52.125), ('08/01/2000', 50.3125), ('09/01/2000', 61.3125), ('10/01/2000', 26.6875), ('11/01/2000', 19.4375), ('12/01/2000', 17), ('01/01/2001', 14.875), ('02/01/2001', 20.6875), ('03/01/2001', 17.8125), ('04/01/2001', 22.09), ('05/01/2001', 25.41), ('06/01/2001', 20.13), ('07/01/2001', 23.64), ('08/01/2001', 19.01)] plot = Gnuplot.PlotItems.Data(mylist, with="histeps", title="charlie") g.plot(plot) Now the error I receive is: Traceback (most recent call last): File "./graphictest.py", line 27, in <module> plot = Gnuplot.PlotItems.Data(mylist, with="histeps", title="charlie") File "/usr/lib/python2.5/site-packages/Gnuplot/PlotItems.py", line 513, in Data set = utils.float_array(set[0]) File "/usr/lib/python2.5/site-packages/Gnuplot/utils.py", line 41, in float_array return Numeric.asarray(m, Numeric.Float) File "/usr/lib/python2.5/site-packages/Numeric/Numeric.py", line 134, in asarray return multiarray.array(a, typecode, copy=0, savespace=savespace) TypeError: object of type 'float' has no len() I have attempted to debugg this myself and have been having no luck. I look at the 'float' has no len() and realize that their is some sort of casting error perhaps? Is it looking at the data points and assuming that they are strings? I am baffled. Thank you again for your help. Gerald Rude |
From: Gil D. <gil...@gm...> - 2008-07-26 08:19:08
|
Use with_ instead. Gil On Sat, Jul 26, 2008 at 3:13 AM, Gerald Rude <gd...@gm...> wrote: > Thank you for the wonderful tool you have given us. Gnuplot.py is > amazing. I am having some difficulty though and I would love a > workaround or solution to a problem I am experiencing. I am having > difficulty with "with" being a reserved word in python. For instance: > > plot1=Gnuplot.PlotItems.Data(list_tuple, with = "linetype", title = > "title") > > g.plot(plot1) > > I receive an error: > SyntaxError: invalid syntax > and Idle highlights "with" > > Any help would be appreciated. I was hoping to solve the problem > without resorting to writing the data to a txt file and then hacking > together a plot script all the time. > > > Thank you again! > Gerald Rude > > ------------------------------------------------------------------------- > 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: Gerald R. <gd...@gm...> - 2008-07-26 00:13:46
|
Thank you for the wonderful tool you have given us. Gnuplot.py is amazing. I am having some difficulty though and I would love a workaround or solution to a problem I am experiencing. I am having difficulty with "with" being a reserved word in python. For instance: plot1=Gnuplot.PlotItems.Data(list_tuple, with = "linetype", title = "title") g.plot(plot1) I receive an error: SyntaxError: invalid syntax and Idle highlights "with" Any help would be appreciated. I was hoping to solve the problem without resorting to writing the data to a txt file and then hacking together a plot script all the time. Thank you again! Gerald Rude |
From: Steve W. <tun...@gm...> - 2008-07-25 15:59:29
|
Is Gunplot.py 1.8 compatible with 64 bit operating systems? I am using Python 2.5.2 and gnuplot 4.2 patch level 2 on Ubuntu 8.04 x86_64. I've seen some old posts expressing problems with gnuplot.py 1.7 and python 2.4. Specifically, my problems arise when I try to use Gnuplot.Data(). Warning: empty x range [0:0], adjusting to [-1:1] Warning: empty y range [0:0], adjusting to [-1:1] My code runs on a 32 bit installation. #!/usr/bin/env python from numpy.core import numeric import Gnuplot, Gnuplot.funcutils list = range(25) tuplelist = [] for j in range(len(list)): a = (list[j],list[j]**2) tuplelist.append(a) print tuplelist g = Gnuplot.Gnuplot(debug=1) g.plot(tuplelist) |
From: Michael H. <mh...@al...> - 2008-07-25 09:51:44
|
[Please don't send Gnuplot.py emails directly to me. I am directing a CC of this response to the gnuplot-py-users mailing list.] Pierre Jaury wrote: > I have used Gnuplot and Gnuplot-Py for a long time on a linux system. > I recently tried to plot some data from a file under Windows. > Gnuplot-py returns no error cause everything is reported by gnuplot.exe, > which seems no to accept filenames containing "\". > I didn't have a close eye on that problem and simply used replace, but > it would be nice to report it to gnuplot developpers and to keep > compatibility. Good idea. Please do that. I suggest that you tell them exactly what commands are being sent from Gnuplot.py to gnuplot (e.g., by initializing your Gnuplot object with the debug=1 option) and what errors result, as they will probably not be familiar with Gnuplot.py themselves. Michael |
From: Alexander T. <Ale...@Th...> - 2008-07-15 20:03:42
|
Hi, I just started with both gnuplot and gnuplot-py and I'm wondering how I can tell the wrapper to execute a command like "plot file using 1:2" ? My X axis is a timestamp and I'm trying to format it with set xdata time set timefmt %s set format x "..." All I get is "Need full using spec for x time data"... Regards, Alex |
From: Pascal D. <pdu...@ya...> - 2008-06-15 06:40:09
|
Hi, in gnuplot one can do the following : set linestyle 3 linetype 3 linewidth 8 set style line 1 lt 3 pt 5 lw 1.5 setting the "pointsize" is one of the set possibility in gnuplot.py. Unfortunately linewidth etc does not appear to be so. Is there a way to get thicker (than default) lines from gnuplot.py either with the g('set ...') command or by passing argument to the plot or replot method ? many thanx Pascal |
From: Alan G I. <ai...@am...> - 2008-05-05 02:32:11
|
On Sun, 4 May 2008, (CDT) Mark Alford apparently wrote: > gnuplot-py version 1.8 is now available on sourceforge Thanks! Alan Isaac |
From: Michael H. <mh...@al...> - 2008-05-04 20:34:49
|
Mark Alford wrote: > With a lot of hand-holding from Michael Haggerty, I have > converted the current SVN code in to a sourceforge > release. gnuplot-py version 1.8 is now available on sourceforge. Great! Thanks a lot, Mark! Michael |
From: Mark A. <al...@wu...> - 2008-05-04 20:28:17
|
With a lot of hand-holding from Michael Haggerty, I have converted the current SVN code in to a sourceforge release. gnuplot-py version 1.8 is now available on sourceforge. Mark |
From: Michael H. <mh...@al...> - 2008-05-01 06:03:06
|
[I'm sending a CC of this email to the gnuplot-py-users mailing list, so that other people can keep track of what is going on. Quick summary: Mark Alford is working on making a 1.8 release of Gnuplot.py.] Mark Alford wrote: > Questions: > > 0) In step 1 of RELEASES.txt, when I increment the __version__ > string in __init__.py, I assume that I should NOT have a "+" on > the end at this stage. That will come later, in step 10, right? Correct. > 1) I tried installing happydoc from sourceforge. > The INSTALL.txt says to type "python ./setup.py install" > but the happydoc source directory does not have any file called > "setup.py" !! I haven't used happydoc in years. I have no idea whether it is still maintained etc. But I don't think there is anything happydoc-specific in Gnuplot.py. IIRC, happydoc just parses the Python files looking for class definitions and docstrings, and generates the documentation from that. There might be other documentation packages that can do a similar job. I notice that Ubuntu gutsy includes a "python-happydoc" package that is installed on my computer. Maybe your Linux distribution has such a thing? > 2) How do I check my version of gnuplot-py in to sourceforge using > subversion? Do I cd to the directory where I have my version of > gnuplot-py and then type > svn commit -m "created official version 1.8" Yes, but this only works if the directory was originally obtained from sourceforge using SVN. Probably it also has to be obtained under your own userid (as opposed to "guest"). Something like svn co --username=alford \ https://gnuplot-py.svn.sourceforge.net/svnroot/gnuplot-py/trunk \ gnuplot-py-trunk cd gnuplot-py-trunk # edit files svn commit -m 'message' > 3) In RELEASES.txt, why do steps 4,5,6 come after commiting the > code in step 2? They only affect my local copy. > How will those changes be communicated to the > sourceforge release that people will then download? The point of these steps is to generate a tarball and zip archive containing the Gnuplot.py module. Most people prefer to install from a tarball rather than checking the code out of Subversion (this is pretty much the whole point of making a release!) The source code from which the tarball was created is marked in Subversion by the tag created in step 3, but of course the tarball and the generated documentation should not be checked into Subversion because they can be regenerated at will. The products of step 5 are uploaded to sourceforge in step 7. > 4) Should I do step 6? Your comment there seems to be saying not > to do it! Yes, I think step 6 should be omitted. You can delete it from the docs if you like. (Installing for end users is documented in README.txt anyway.) By the way, feel free to add yourself to CREDITS.txt. Michael |
From: Benny M. <ben...@gm...> - 2008-04-30 16:28:27
|
This is a gnuplot question, please, read gnuplot help if this is possible, in gnuplot, starti with help ytics You could ask help on gnuplot lists also, this list is for the gnuplot module in Python. Benny 2008/4/30 Veelion Chong <ve...@gm...>: > Hi, All > > I want to plot a chart of my data. I want the xtics with different colors. > for example, my x data is > -3, -2, -1, 0, 1, 2, 3, > I want the text data less than 0 appears red, 0 is green, and large than 0 > is blue, which seems like, > -3(r), -2(r), -1(r), 0(g), 1(b), 2(b), 3(b), > I tried to use > 'set ytics tc rgb "#FF0000" (%f %f %f)' % (-3, -2, -1) > 'set ytics tc rgb "#00FF00" (%f)' % (0) > 'set ytics tc rgb "#0000FF" (%f %f %f)' % ( 3, 2, 1) > but only the last one take effect, why? > > How can I make x or y axis with different colors number? > > Thanks, > veelion > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > > |
From: Veelion C. <ve...@gm...> - 2008-04-30 14:40:46
|
Hi, All I want to plot a chart of my data. I want the xtics with different colors. for example, my x data is -3, -2, -1, 0, 1, 2, 3, I want the text data less than 0 appears red, 0 is green, and large than 0 is blue, which seems like, -3(r), -2(r), -1(r), 0(g), 1(b), 2(b), 3(b), I tried to use 'set ytics tc rgb "#FF0000" (%f %f %f)' % (-3, -2, -1) 'set ytics tc rgb "#00FF00" (%f)' % (0) 'set ytics tc rgb "#0000FF" (%f %f %f)' % ( 3, 2, 1) but only the last one take effect, why? How can I make x or y axis with different colors number? Thanks, veelion |
From: Benny M. <ben...@gm...> - 2008-04-30 07:11:19
|
2008/4/29 Michael Haggerty <mh...@al...>: > Mark Alford wrote: > > On Mon, 28 Apr 2008, John K. Parejko wrote: > >> The version of Gnuplot.py in SVN replaces Numeric with numpy. It > hasn't been > >> turned into a release yet, but if you can download the latest > subversion > >> trunk (there should be information on how to do this from the > sourceforge > >> page), it should work just fine with numpy. > > > > What is stopping us from turning the SVN version in to a release? > > I tested it on Fedora and it works fine. > > Is there anything else that I and others can do to expedite the process? > > All that is missing is a volunteer who will follow through. > > If you want to be that person, let me know what your sourceforge > username is and I'll give you the necessary permissions. There's even a > document RELEASES.txt telling roughly what I had to do to make the last > release. I started a bit with it after a call from Michael, what stopped me doing a release was that I needed time to look at the parts of test.py that where giving errors. I wanted to find the time to resolve those first. Should you be interested in releasing SVN Mark, as Michael says go ahead and send him his details. Solving the errors occuring could always be done later. I use SVN version on a weekly basis without problems. Benny > > Michael > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users > |