I am familiar with the xts subsetting abilities. However, I can't find an elegant way to subset a parameterized range of dates. something like this:
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]
Does anybody have any idea? Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…