|
From: theozh <th...@gm...> - 2022-06-27 06:35:46
|
if you give only one column for a line plot it will use the pseudocolumn 0 as x-value (check "help pseudocolumns") which is basically the line number (index zero-based).
So, instead use:
data="/home/incal/public_html/hits/hits.dat"
plot \
data u ($0+1):1 w l lc "cyan" lw 2 t "solene", ...
|