Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
(22) |
May
(14) |
Jun
(18) |
Jul
(19) |
Aug
(7) |
Sep
(4) |
Oct
(6) |
Nov
(12) |
Dec
(14) |
2005 |
Jan
(15) |
Feb
(11) |
Mar
(11) |
Apr
(9) |
May
(119) |
Jun
(25) |
Jul
(16) |
Aug
(19) |
Sep
(26) |
Oct
(14) |
Nov
(7) |
Dec
(45) |
2006 |
Jan
(22) |
Feb
(7) |
Mar
(11) |
Apr
(11) |
May
(12) |
Jun
(19) |
Jul
(12) |
Aug
(5) |
Sep
(21) |
Oct
(33) |
Nov
(42) |
Dec
(34) |
2007 |
Jan
(26) |
Feb
(27) |
Mar
(54) |
Apr
(37) |
May
(68) |
Jun
(81) |
Jul
(55) |
Aug
(86) |
Sep
(60) |
Oct
(33) |
Nov
(33) |
Dec
(47) |
2008 |
Jan
(37) |
Feb
(37) |
Mar
(52) |
Apr
(63) |
May
(98) |
Jun
(70) |
Jul
(61) |
Aug
(38) |
Sep
(64) |
Oct
(55) |
Nov
(48) |
Dec
(111) |
2009 |
Jan
(68) |
Feb
(83) |
Mar
(102) |
Apr
(140) |
May
(156) |
Jun
(65) |
Jul
(75) |
Aug
(26) |
Sep
(28) |
Oct
(31) |
Nov
(38) |
Dec
(78) |
2010 |
Jan
(53) |
Feb
(33) |
Mar
(87) |
Apr
(94) |
May
(77) |
Jun
(84) |
Jul
(66) |
Aug
(74) |
Sep
(53) |
Oct
(40) |
Nov
(38) |
Dec
(31) |
2011 |
Jan
(19) |
Feb
(17) |
Mar
(43) |
Apr
(53) |
May
(42) |
Jun
(35) |
Jul
(19) |
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
2012 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2017 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
(7) |
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
(3) |
12
|
13
|
14
(1) |
15
|
16
|
17
|
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
(2) |
28
|
29
|
30
|
31
|
|
|
|
|
|
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-27 21:59:47
|
On Thu, 27 May 2004, Elisabeth Ressayre wrote: > In the attached file m10_bis, I explain my problem to draw the file m10. [It would have been more helpful to keep the explanation in the mail body, and only the data file in the attachment.] The root of this problem is that the y range of your data is degenerate. All the y values are the same, within a *very* small error margin, way down close to the technical limit of what a double-precision floating point number can represent (1 +/- n * DBL_EPS, for small integer 'n'). gnuplot's automatic tic step sizing algorithm fails, this close to the boundary. As a workaround, you could remove the constant 1.0 from the data before plotting: plot 'datafile' u 1:($2-1.0) -- Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: Elisabeth Ressayre <Elisabeth.Ressayre@pp...> - 2004-05-27 14:11:03
|
In the attached file m10_bis, I explain my problem to draw the file m10. Thank you in advance E. Ressayre=20 |
From: Lutz Maibaum <maibaum@uc...> - 2004-05-19 23:45:16
|
I encountered the following (to me) surprising behavior with gnuplot 4.0. Take the following snippet: set multiplot set size 0.5,1 set pm3d map set palette gray set origin 0,0 set palette defined ( 0 "black", 1 "white" ) splot x**2+y**2 set origin 0.5,0 set palette defined ( 0 "white", 1 "black" ) splot x**2+y**2 unset multiplot and put it into a file, say, test.gp. Running this script in a gnuplot session under X I get two graphs where "white" corresponds to zero on the z-axis, i.e., the second "set palette" command affected not only the second, but also the first plot. Similarly, using the postscript terminal, both plots range from black for z=0 to white for z=200. This is unexpected, because... a) I think that my X (running at 16 bit depth), and certainly postscript, do not run out of available colors, and b) the second plot doesn't need more colors than the first one anyways, since they both require only shades of gray. Is there any other way to reverse the color range between to graphs in the same plot? I tried various combinations of set cbrange [0:200] set cbrange [0:200] reverse set cbrange [200:0] for the second plot, but none of them gave the desired result. As in interesting side node, if first execute in a fresh gnuplot session load 'test.gp' and then, after closing the appearing X window, set term post; set outp 'test.ps'; load 'test.gp'; set outp the resulting postscript file "test.ps" contains only one graph. I don't understand why that might be. Lutz |
From: Shigeharu TAKENO <shige@ie...> - 2004-05-14 08:49:42
|
shige 05/14 2004 ---------------- I found a problem below: > shige 04/30 2004 > ---------------- > > I found a problem in docs/doc2texi.el. This deals with some HTML > tag lines started by '^' in gnuplot.doc, but it has no code for > "^ <a name=..." tag lines which exist in gnuplot.doc. So, .texi > file made by it has raw "^ <a name=..." lines. The following small patch may fix it. ----- From here ----- *** docs/doc2texi.el.ORG Sun Apr 11 07:55:00 2004 --- docs/doc2texi.el Fri May 14 14:46:13 2004 *************** *** 769,775 **** "," (remove* ?^ (match-string 2) :test 'char-equal) ! "}")))) ;; translate <ul> </ul> to @itemize environment ((and (string= bracket "<") (string-match "^ul" tag)) (delete-region (point) eol) --- 769,777 ---- "," (remove* ?^ (match-string 2) :test 'char-equal) ! "}")) ! (insert "@c ")) ! ) ;; translate <ul> </ul> to @itemize environment ((and (string= bracket "<") (string-match "^ul" tag)) (delete-region (point) eol) ----- To here ----- +========================================================+ Shigeharu TAKENO NIigata Institute of Technology kashiwazaki,Niigata 945-1195 JAPAN shige@... TEL(&FAX): +81-257-22-8161 +========================================================+ |
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-11 14:13:54
|
On Tue, 11 May 2004, Hans-Bernhard Broeker wrote: > On Tue, 11 May 2004, VTs (Vadim Z. Tsalyuk) wrote: > > > I have found that 'set arrow... size...' do not work in size. > > set arrow 2 to 0,2.0 size 100,30 filled ls 2 > > does the same that > > set arrow 2 to 0,2.0 size 0.2,30 filled ls 2 > > does. > > Which terminal driver? At least version 4.0.0 on both X11 and PostScript > shows a considerable difference in behaviour between these two settings. Oh, blast. Forget I ever wrote that. Your script showed you're using epslatex as your terminal driver. Which doesn't support customized arrow heads. -- Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-11 14:06:33
|
On Tue, 11 May 2004, VTs (Vadim Z. Tsalyuk) wrote: > I have found that 'set arrow... size...' do not work in size. > set arrow 2 to 0,2.0 size 100,30 filled ls 2 > does the same that > set arrow 2 to 0,2.0 size 0.2,30 filled ls 2 > does. Which terminal driver? At least version 4.0.0 on both X11 and PostScript shows a considerable difference in behaviour between these two settings. -- Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: VTs \(Vadim Z. Tsalyuk\) <vts@ma...> - 2004-05-11 13:40:14
|
I have found that 'set arrow... size...' do not work in size. set arrow 2 to 0,2.0 size 100,30 filled ls 2 does the same that set arrow 2 to 0,2.0 size 0.2,30 filled ls 2 does. The full text is attached. I have MS Win32 (98 or XP), PS installed is AFPL Ghostscript 7.03. VTs (Vadim Z. Tsalyuk) http://public.kubsu.ru/vts E-mail: vts@... |
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-02 14:38:54
|
On Sun, 2 May 2004, [iso-8859-2] Karel Kulhav=FD wrote: > info gnuplot > Commands > "on-line versions may not be complete." >=20 > There is missing an information where an online document with compl= ete > list of the gnuplot commands can be obtained. It says that right in the same sentence, exactly before the fragment you quote: "printed versions contain all commands". That obviously includes all printable formats, e.g. the .ps one we distribute right on our main web sites. > For example I have been seeking information on usage of the "set" c= ommand > and it is missing in this chanpter. The chapter is obviously not co= mplete. 'info' files don't have "chapters", so I don't think I know what you'= re talking about. There's a node "set-show" right there in the "command= s" node you already found. "set" and "show" share a node because they'r= e discussed together, in each individual setting. --=20 Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-02 14:33:42
|
On Sun, 2 May 2004, [iso-8859-2] Karel Kulhav=FD wrote: > Hello >=20 > info gnuplot > ctrl+s set grid ctrl+s ctrl+s A side note: gnuplot.info has an index, so typing 'igrid' and then <Return> would have got you there faster and easier... > This chapter "grid" operates with some "major_linestyle" > (for example in the syntax, linestyle <major_linestyle>) but lacks > a definition of what it is (it clearly may not be anything, > I tried a zero: > gnuplot> set grid mxtics xtics ytics mytics linestyle 0 > linestyle not found That would have worked if you know what a "linestyle" is, and that yo= u must define one befor you can use it. The info you're looking for is there in the text: The grid can be enabled and disabled for the major and/or minor tic marks on any axis, and the linetype and linewidth can be specified for major and minor grid lines, also via a predefined linestyle, as far as the active terminal driver supports this. Is it really that hard to concatenate "major" and "linestyle" from th= is=20 paragraph and guess that that's what the "major_linestyle" is? --=20 Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: Hans-Bernhard Broeker <broeker@ph...> - 2004-05-02 14:26:17
|
On Sun, 2 May 2004, [iso-8859-2] Karel Kulhav=FD wrote: [quoting "help bugs"] > "Please e-mail any bugs to bug-gnuplot mailing list (see `Seeking-a= ssistance`)" >=20 > "see `Seeking-assistance`" is invalid reference in this context. In what help format, on what platform? At least around here, it seem= s to work fine with both the .gih and .info help files. > s/`Seeking-assistance`/`Seeking-assistance` in info gnuplot/ --=20 Hans-Bernhard Broeker (broeker@...) Even if all the snow were burnt, ashes would remain. |
From: <clock@tw...> - 2004-05-02 06:43:08
|
^ <a name="linetype"></a> ^ <a name="linewidth"></a> Is in info gnuplot Node set_style_line. It obviously shouldn't be there. Cl< |
From: <clock@tw...> - 2004-05-02 06:40:10
|
info gnuplot Commands "on-line versions may not be complete." There is missing an information where an online document with complete list of the gnuplot commands can be obtained. For example I have been seeking information on usage of the "set" command and it is missing in this chanpter. The chapter is obviously not complete. Cl< |
From: <clock@tw...> - 2004-05-02 06:30:44
|
Hello info gnuplot ctrl+s set grid ctrl+s ctrl+s This chapter "grid" operates with some "major_linestyle" (for example in the syntax, linestyle <major_linestyle>) but lacks a definition of what it is (it clearly may not be anything, I tried a zero: gnuplot> set grid mxtics xtics ytics mytics linestyle 0 linestyle not found ) but doesn't define what the major_linestyle is NOR where the information what the major_lifestyle is can be obtained. Fix: 1) dig up in your memory what the major linestyle is 2) dig up in your memory where the information what the major linestyle is can be obtained 3) Put either the result of 1) or 2) into this chapter. Cl< |
From: <clock@tw...> - 2004-05-02 06:25:05
|
Hello gnuplot help bugs says "Please e-mail any bugs to bug-gnuplot mailing list (see `Seeking-assistance`)" "see `Seeking-assistance`" is invalid reference in this context. Fix: s/`Seeking-assistance`/`Seeking-assistance` in info gnuplot/ Cl< |