我有一个不规则的时间序列(xts
中的R
)我想要应用一些时间窗口。例如,给定如下的时间序列,我想从2009-09-22 00:00:00
开始计算每个离散3小时窗口中有多少观察值的事情:
library(lubridate)
s <- xts(c("OK", "Fail", "Service", "OK", "Service", "OK"),
ymd_hms(c("2009-09-22 07:43:30", "2009-10-01 03:50:30",
"2009-10-01 08:45:00", "2009-10-01 09:48:15",
"2009-11-11 10:30:30", "2009-11-11 11:12:45")))
我显然无法使用period.apply()
或split()
来执行此操作,因为这些会省略没有观察的句点,而且我无法给它一个开始时间。
我想要的简单计数问题的输出(当然,我的实际任务对于每个段都更复杂!)如果我一次聚合3天就会是这样的:
2009-09-22 1
2009-09-25 0
2009-09-28 0
2009-10-01 3
2009-10-04 0
2009-10-07 0
2009-10-10 0
2009-10-13 0
2009-10-16 0
2009-10-19 0
2009-10-22 0
2009-10-25 0
2009-10-28 0
2009-10-31 0
2009-11-03 0
2009-11-06 0
2009-11-09 2
感谢任何指导。
答案 0 :(得分:11)
使用align.time
将s
的索引放入您感兴趣的句点中。然后使用period.apply
查找每个3小时窗口的长度。然后将其与具有所需索引值的空xts对象合并。
# align index into 3-hour blocks
a <- align.time(s, n=60*60*3)
# find the number of obs in each block
count <- period.apply(a, endpoints(a, "hours", 3), length)
# create an empty xts object with the desired index
e <- xts(,seq(start(a),end(a),by="3 hours"))
# merge the counts with the empty object and fill with zeros
out <- merge(e,count,fill=0)