Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!postnews.google.com!o5g2000yqa.googlegroups.com!not-for-mail From: ervson Newsgroups: comp.graphics.apps.gnuplot Subject: autoscale: y axis always scales from "0" Date: Fri, 25 Nov 2011 02:59:24 -0800 (PST) Organization: http://groups.google.com Lines: 28 Message-ID: <7e013a4d-a830-41b0-810b-b5377e2f5f25@o5g2000yqa.googlegroups.com> NNTP-Posting-Host: 129.187.45.9 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1322219758 12618 127.0.0.1 (25 Nov 2011 11:15:58 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 25 Nov 2011 11:15:58 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: o5g2000yqa.googlegroups.com; posting-host=129.187.45.9; posting-account=YaU0ZAoAAAAxx8TuftSfElaT-fQeKttf User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HUALSRCNK X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 ( .NET CLR 3.5.30729; .NET4.0E),gzip(gfe) Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:702 Hi, I'm trying to set up a plot in gnuplot with autoscale. But always when i try to plot my data the y axis has its minimum at 0, though there is no data in the file with a value of 0 or anything like that. I haven't set any yrange and when i type "show autoscale" gnuplot tells me that autoscale is OFF for every axis. I just can't find any mistake, but I also have to say that i'm a gnuplot newbie. So here's what I try to plot: reset M_N= 0.800 unset key set size ratio -1 set style line 1 lt -1 lc "black" lw 5 set terminal pdf enhanced font "Helvetica" size 11.6,8.2 set terminal push set autoscale set terminal unknown plot "DATA.PKT" using 1:2 MIN_Y=GPVAL_DATA_Y_MIN MAX_Y=GPVAL_DATA_Y_MAX set terminal pop set output "EVO.pdf" plot "DATA.PKT" using 1:2 w filledcurve y1=MIN_Y-0.5*M_N ls 1 fs solid 0.2