给出此数据文件:
#date foo bar
2018-10-12_11-54-52 12 1
2018-10-12_11-55-09 14 7
2018-10-12_11-55-16 13 10
2018-10-12_13-00-01 15 8
2018-10-12_14-00-01 12 9
和这套绘图命令:
set timefmt "%Y-%m-%d_%H-%M-%S"
set xrange ["2018-10-12_11-54-52" : "2018-10-12_14-00-01"]
plot 'datafile.txt' using 1:2 with linespoints linestyle 1
plot 'datafile.txt' using 1:3 with linespoints linestyle 1
当我使用gnuplot -p cmd_file.txt
运行gnuplot时,它会出错
line 3: Can't plot with an empty x range!
xrange的长度应超过125分钟。 gnuplot为什么认为它是空的?