WARNING: This server is unstable and will be retired in the next days.
If you want to keep this forum available, please request immediately a migration
on the
Nabble Support forum.
Forums that don't receive any migration request will be deleted forever.
Re: first line of data file being missed
'plot ... using 1 ...'
numbers the data points starting from zero, your plot borders are [1:8], so
the first data point isn't plotted.
either change the first line in your datafile or
'plot ... using ($0+1):1 ...'