Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #629

How to change the starting point?

From buxton@rmu.edu
Newsgroups comp.graphics.apps.gnuplot
Subject How to change the starting point?
Date 2011-10-06 04:21 -0700
Organization http://groups.google.com
Message-ID <24961279.2170.1317900115176.JavaMail.geo-discussion-forums@yqlb4> (permalink)
References <a3ee7b1e-128b-4920-b5cb-9760f08ebeb2@d17g2000yqa.googlegroups.com>

Show all headers | View raw


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?

Back to comp.graphics.apps.gnuplot | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

How to change the starting point? Veronica <tehbanhong@gmail.com> - 2011-10-05 20:37 -0700
  How to change the starting point? buxton@rmu.edu - 2011-10-06 04:21 -0700
    Re: How to change the starting point? Christoph Bersch <usenet@bersch.net> - 2011-10-06 13:50 +0200

csiph-web