Path: csiph.com!eternal-september.org!feeder.eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: Dieter Britz Newsgroups: comp.graphics.apps.gnuplot Subject: 3D plot Date: Tue, 29 Oct 2019 09:30:50 -0000 (UTC) Organization: A noiseless patient Spider Lines: 31 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Tue, 29 Oct 2019 09:30:50 -0000 (UTC) Injection-Info: reader02.eternal-september.org; posting-host="3e63ff15f159b098a29e17a3973cf178"; logging-data="29675"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18nZ6j9ubYKFTsr5gPSYZeMbzOEQjtENeU=" User-Agent: Pan/0.144 (Time is the enemy; 28ab3ba git.gnome.org/pan2) Cancel-Lock: sha1:vGrj0t5Mq8jhJclEupV5g/nUIFw= Xref: csiph.com comp.graphics.apps.gnuplot:4245 I have this script: gnuplot << eoi set term postscript enh eps 24 set output 'CDL1.eps' set title 'CD, L = 1' set xrange [0:1.0] set yrange [0:1.0] set xtics 0, 0.5, 1 set ytics 0, 0.5, 1 set xlabel "X" set ylabel "Y" set zlabel "cd" unset key splot 'data/CDsL1.dat' w l lt 1 quit eoi The result is here: http://dieterbritz.dk/CDL1.pdf 1. How do I move the x-axis labels (0, 0.5, 1) a bit lower down so that the 0.5 doesn't hit the base line? 2. How do I lower the plot so that the zero level is right at the bottom? 3 The orientation is not bad as is, but I tried to play with the angle of view, e.g. using splot 'data/CDsL1.dat' w l lt 1 rotate=pi and there was an error with rotate. How is that done? -- Dieter Britz