Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: Michael Newsgroups: comp.graphics.apps.gnuplot Subject: Distance from axes Date: Fri, 05 Aug 2011 22:07:03 +0700 Organization: A noiseless patient Spider Lines: 15 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Fri, 5 Aug 2011 15:03:56 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="xRgEVutvq4120NtV0lKpag"; logging-data="8120"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+3Uqvp6PMK5RlOdPu/s07H" User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110626 Icedove/3.1.11 Cancel-Lock: sha1:pfTJqbb+KS5s9bbrgX2WinLGPMA= Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:513 It is often necessary that the curves on the graph were not close to axes. I use external tools for this: the script reads the data files, finds min and max on the Y axis, and writes to gnuplot file something like this: $delta=($maxy-$miny)/20; $maxy -= $delta; $miny += $delta; print GPFILE "plot [][$miny:$maxy] ...."; Can I do this with gnuplot? If not, then I suggest to introduce something like "set ydistance=0.05", which means that the space between data curves and lower/upper X axis is 1/20 of data range. Thanks