Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.chainon-marquant.org!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!74.125.46.80.MISMATCH!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: buxton@rmu.edu Newsgroups: comp.graphics.apps.gnuplot Subject: How to change the starting point? Date: Thu, 6 Oct 2011 04:21:55 -0700 (PDT) Organization: http://groups.google.com Lines: 13 Message-ID: <24961279.2170.1317900115176.JavaMail.geo-discussion-forums@yqlb4> References: Reply-To: comp.graphics.apps.gnuplot@googlegroups.com NNTP-Posting-Host: 98.219.143.106 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1317900115 3977 127.0.0.1 (6 Oct 2011 11:21:55 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 6 Oct 2011 11:21:55 +0000 (UTC) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=98.219.143.106; posting-account=w-3pEwoAAACtEyui1WPKSnCFDv7D6kAx User-Agent: G2/1.0 X-Google-Web-Client: true Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:629 Either you could change the xaxis or, if your data is x y then instead of plot 'data.dat' u 1:2 Try plot 'data.dat' u ($1<63? 1/0: $1):2 Or plot 'data.dat' u ($0<63? 1/0: $1):2 if your x-axis isn't your sequence number. I may have misunderstood though. What does your data look like?