Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!news-out.readnews.com!news-xxxfer.readnews.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: bryan Newsgroups: comp.graphics.apps.gnuplot Subject: data cutoff threshold for `plot` Date: Sat, 17 Mar 2012 11:39:56 -0700 (PDT) Organization: http://groups.google.com Lines: 15 Message-ID: <13798827.2811.1332009596089.JavaMail.geo-discussion-forums@vbze11> NNTP-Posting-Host: 24.62.36.14 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1332009596 7658 127.0.0.1 (17 Mar 2012 18:39:56 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 17 Mar 2012 18:39:56 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=24.62.36.14; posting-account=PtxH9gkAAAAGMw6wJDvB_vinyKd1zCKS User-Agent: G2/1.0 Xref: csiph.com comp.graphics.apps.gnuplot:981 [ gnuplot 4.6 ] Is there something like a threshold that applies to a single plot type after `plot` is given? If this can be done using two y-axes, there's already a lot in the newsgroup for that I can try. I have some x/y data. I'd like to combine impulses with a line, however, I'd like to plot the line for data below some threshold. e.g. impulses for all data, but a line to connect tops of the impulses for data points below some value e.g. 5000 (see below) imaginary pseudo-code to illustrate what I'd like to do: yrange [0:10000] plot \ 'data.dat' u 1:2 w i, \ '' u 1:2 w l threshold=5000 ... so the plot will have impulses above 5000 that stand alone and are not connected to those below 5000. the ones below will appear connected. -Bryan