私はxtsサブセット化機能に精通しています。ただし、パラメータ化された日付の範囲をサブセット化するための洗練された方法を見つけることができません。このようなもの:
times = c(as.POSIXct("2012-11-03 09:45:00 IST"),
as.POSIXct("2012-11-05 09:45:00 IST"))
#create an xts object:
xts.obj = xts(c(1,2),order.by = times)
#filter with these dates:
start.date = as.POSIXct("2012-11-03")
end.date = as.POSIXct("2012-11-04")
#instead of xts["2012-11-03"/"2012-11-04"], do something like this:
xts[start.date:end.date]
誰かが何か考えを持っていますか?ありがとう!