X-Received: by 2002:ac8:3987:: with SMTP id v7mr3001795qte.144.1610428628634; Mon, 11 Jan 2021 21:17:08 -0800 (PST) X-Received: by 2002:a25:9b45:: with SMTP id u5mr4458737ybo.331.1610428628454; Mon, 11 Jan 2021 21:17:08 -0800 (PST) Path: csiph.com!xmission!news.snarked.org!border2.nntp.dca1.giganews.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Mon, 11 Jan 2021 21:17:08 -0800 (PST) In-Reply-To: <14a8dd4d-cf0f-4a9f-b623-bd32c2a7aab4n@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=23.239.20.136; posting-account=bQqzsgoAAABmut957yFoBsqsohvcG9DX NNTP-Posting-Host: 23.239.20.136 References: <7d747fb0-48ff-43c8-ab72-21a41e7f39d1n@googlegroups.com> <4159fcbc-e889-49d1-a3df-a2dcdc25cc5bn@googlegroups.com> <14a8dd4d-cf0f-4a9f-b623-bd32c2a7aab4n@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Select data points in interactive terminal From: "jindi.li" Injection-Date: Tue, 12 Jan 2021 05:17:08 +0000 Content-Type: text/plain; charset="UTF-8" Lines: 8 Xref: csiph.com comp.graphics.apps.gnuplot:4390 I'm Quite happy to notice the Conditional Plotting in gnuplot, which solve my initial question, I need to remove some data point in the plot graph without touch my real data. I post the line work for me here in case someone need that too. Yes, as simple as: $>: plot 'scale.csv' u ($1>=0?$1:NaN) which I didn't notice yet.