GNUPLOTのx軸の日付と時刻に関する簡単な質問があります。私はコードに話をさせます:
これは私のデータです:
#Time Data in Data out
"2013-07-22 15:59:00" 6286 3730
"2013-07-22 15:58:00" 10695 14589
"2013-07-22 15:57:00" 17868 26464
"2013-07-22 15:56:00" 18880 34012
"2013-07-22 15:55:00" 19206 41192
"2013-07-22 15:54:00" 20365 43218
"2013-07-22 15:53:00" 18459 39298
"2013-07-22 15:52:00" 3420 4686
"2013-07-22 15:51:00" 3256 4942
そして、これはグラフを生成しているコードです:
gnuplot> set title "Data usage over the last 24 hours"
gnuplot> unset multiplot
gnuplot> set xdata time
gnuplot> set style data lines
gnuplot> set term png
Terminal type set to 'png'
Options are 'nocrop font "arial,12" fontscale 1.0 size 640,480 '
gnuplot> set timefmt "%Y-%m-%d %H:%M:%S"
gnuplot> set format x "%m-%d\n%H:%M"
gnuplot> set xlabel "Time"
gnuplot> set ylabel "Traffic"
gnuplot> set autoscale y
gnuplot> set xrange ["2013-07-21 16:00":"2013-07-22 16:00"]
gnuplot> set output "datausage.png"
gnuplot> plot "C:\\Users\\blah\\Desktop\\plot.tmp" using 1:2 t "inbound" w lines, "C:\\Users\\blah\\Desktop\\plot.tmp" u 1:3 t "outbound" w lines
^
all points y value undefined!
問題は、x軸のdate
とtime
の間のスペースですか?そうでない場合、何が問題になると思いますか?
Gnuplotは実際には時間データが引用符で囲まれていることを期待していないので、それを伝える必要があります。
set timefmt '"%Y-%m-%d %H:%M:%S"'
ここで行ったように、二重引用符を単一引用符の中に入れるか、引用符をエスケープすることができます。
set timefmt "\"%Y-%m-%d %H:%M:%S\""
xrange
仕様にも同じことが当てはまります。
set xrange ['"2013-07-21 16:00"':'"2013-07-22 16:00"']
データファイル内の引用符を削除すると、日付が引用符なしで2列を占有するため、列番号が1だけシフトされることを除いて、元々あった書式設定を使用できます。
答えはイエスのようで、問題はスペースでした。
これを行うと修正するようです:
set datafile separator ","
実際に時間とデータをコンマで区切ります。
私が理解している限り、命令の順序が重要です。
timefmt
はデータ用であり、xrangeでも同じでなければなりませんformat x
は表示専用です
set xdata time
set timefmt "%Y%m%dT%H%M%S"
set format x "%Y-%m-%d\n%H:%M:%S"
# or with bash variables: set xrange ["$l_start_dt":"$l_end_dt"]
set xrange ["20190620T000000":"20190628T000000"]