gnuplot报告带有日期范围的空x范围

时间:2018-10-12 13:47:26

标签: gnuplot

给出此数据文件:

#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为什么认为它是空的?

0 个答案:

没有答案