How to treat the first line of the data file as column labels in gnuplot?

后端 未结 5 955
一个人的身影
一个人的身影 2021-02-07 03:08

I have a table like this:

A B C D E F G H I 
10 23998 16755 27656 17659 19708 20328 19377 18925
20 37298 33368 53936 41421 44548 40756 40985 37294
5条回答
  •  终归单人心
    2021-02-07 03:33

    plot for [n=2:12] 'vv.csv' u 1:(column(n)) w lines title columnhead(n)

    I didn't want to plot the first column of data hence n=2:.....

提交回复
热议问题