I have a data file containing 30 columns and N rows. Each rows correspond to 30 values of function f(x) for x={1,...,30}. The data file has following pattern:
UPDATED based on @Christoph's comment:
plot for [i=2:30] 'data.dat' using (i-1):(column(i)) with linespoint
I found a solution:
plot "data.dat" matrix every 1::1 with linespoint
matix
indicates data file type by which the input file interpreted as matrix.every 1::1
skip the first column