|
From: BBands <bb...@gm...> - 2015-04-01 22:39:09
|
Actually that should be:
plot "ColumnData.dat" u 1:($2 > 0 ? $2 : NaN)
John
On Wed, Apr 1, 2015 at 1:44 PM, BBands <bb...@gm...> wrote:
> The ternary operator is your friend.
>
> plot "ColumnData.dat" u 1:($2 < 0 ? NaN : $2)
>
> John
>
>
|