例えば
201710191000 123.4 0 201710191001 124.4 0 201710191002 125.4 0 201710191003 999.9 1 201710191004 127.4 0という風に、エラー値の混じったデータファイルがあり、 列3に、0:正常、1:異常のフラグがある時
set xdata time set timefmt "%Y%m%d%H%M" set format x "%m/%d\n%H:%M" plot "file" using 1:( ($3 == 0)? $2 : 1/0 )とかすると、>br>
awk -F, '{printf("sed %cs+AAA+%s%c\n", 39,$1,39)}' a sed 's+AAA+a'記録(e_c_e_t) ここを見て知りました ありがとう。
set xdata time set timefmt "%Y/%m/%d %H:%M" plot "AAA" using 1:3のようにして時系列を」描くが、例えば、5分時刻をずらしたい時には
plot "AAA" using (timecolumn(1)+300):3のように、timecolumn で内部表現の秒数にして、必要な秒を加減することができる。