I am plotting some data (https://jpst.it/23X01) with gnuplot and I am having a weird problem when combining "using" with an expression on the columns.
The basic command
gnuplot> plot "test.dat" u 1:4 w l
works just fine and displays the following graph
But if I use an expression instead
gnuplot> plot "test.dat" u 1:($4) w l
, some data is discarded.
The discarded points seem to coincide with low y-values. The problem was observed with both v4.6 patchlevel 6 and v5.0 patchlevel 5.
Am I getting something wrong ? I have used this functionality of gnuplot several times in the past but never had this problem before. Thanks in advance.