我有一个格式如下的文件:
"GTX 1080" 1700.0 1700.0
"Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz" 17.0 17.0
我想在gnuplot
中设置直方图的图例,其中包含该文件中每行的第一个元素。
手动完成时,它看起来像这样:
set xtics ("GTX 1080" 0, "Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz" 1)
但它需要动态完成,因为我事先并不知道此文件的内容。
编辑:这些行:
plot DATA_SRC.'global.output' using 2:xticlabel(1) with hist title " A" linecolor rgb "#66ccff", \
DATA_SRC.'global.output' using 3:xticlabel(1) with hist title " B" lt 1 lc rgb "#ee0000"
产生此错误:
"GTX 1080" 1700.0 1700.0
^
"global.output", line 1: invalid command
重新编辑:此解决方案实际上可行。