我想在 x 轴上绘制一天中的几个小时,但打印一天从一天滚动到下一天的日期。所以 x 轴可能看起来像这样:
11/02 04:00 08:00 12:00 16:00 20:00 11/03 04:00 08:00 ...
在 gnuplot 中是否有一种理智的方法可以做到这一点?
FWIW,我的文件目前看起来像这样:
set xdata time
set timefmt "%Y-%m-%d|%H:%M:%S"
plot '-' using 1:2 with lines linewidth 1 linecolor rgb "#FF0000"
2013-11-02|00:00:48 123.0
2013-11-02|00:00:55 124.0
2013-11-02|00:01:06 121.0
2013-11-02:00:01:17 123.0
...
2013-11-04|23:59:41 241.0
2013-11-04|23:59:52 241.0