gnuplot:将列标题设置为标签

gnuplot: set columnheader as label

是否可以将数据文件列的 header 设置为标签(而不是键)?

我的数据文件有 5 或 6 列,每列上方有一个 header。现在我想将列header 与set label 命令一起使用。这可能吗?

unixoid system 上,head 命令有帮助:

header = system("head -n 1 ".filename)
label1 = word(header,1)
label2 = word(header,2)
...
set label 1 at 0.5,0.5 label1
set label 2 ....

MS win does not have the head command, you might use 'findstr /B \"#\"' instead, if the header line begins with a "#". Or use cygwin 在 Windows.

下获得完整的 GNU + POSIX 环境

word() 函数应该在与 columnhead() 相同的位置拆分您的 header 字符串。当然,除非您有不同的分隔符(不是 space 或制表符):

separator =","
p1 = strstrt(header,separator)
p2 = strstrt(header[p1+1:],separator)
...
label1=header[1:p1-1]
...