我在过去的24小时内生成了一个带有gnuplot活动的图表,但是时间轴看起来非常糟糕,因为它试图在最后一天每五分钟调整一次。
gnuplot有没有办法将x轴视为一个纪元时间,并且每隔一小时左右标记一次?
答案 0 :(得分:19)
这是你想要的吗?
set xdata time
set timefmt "%s"
# set xtics 3600
set format x "%H:%M:%S" # or whatever
plot ...
答案 1 :(得分:6)
我从gnuplot howto:
开始03/21/95 10:00 6.02e23
此文件可以通过
绘制 set xdata time
set timefmt "%m/%d/%y"
set xrange ["03/21/95":"03/22/95"]
set format x "%m/%d"
set timefmt "%m/%d/%y %H:%M"
plot "data" using 1:3