gnuplot标签

Ver*_*gen 21 gnuplot

我有这样一张桌子:

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
Run Code Online (Sandbox Code Playgroud)

我用这个命令来绘图

plot "C:/file.txt" using 1:2 with lines smooth bezier, "C:/file.txt" using 1:3 with lines smooth bezier, ...
Run Code Online (Sandbox Code Playgroud)

但是,所有标签都以文件名的形式出现.是否有可能gnuplot读取第一行并相应地标记行?

Sva*_*nte 28

set key autotitle columnhead

  • 如果标头以散列开头,有没有办法做到这一点? (2认同)