アイデアはあなたの最後の質問と同じです
データを日ごとに分割し、各日に関数を適用します。以下split(dxts, "days")
は、各要素が 1 日分のデータであるリストを作成します。lapply
毎日に関数を適用します。
set.seed(123)
full <- .xts(rnorm(2880), 1:2880*5*60)
mrv <- lapply(split(full, "days"), function(x) {
#return an xts-object, which requires a timeBased index
xts(MedRV(x), end(x)) #use the last timestamp of the day
})
次にrbind
、結果を単一の xts オブジェクトにします
do.call(rbind, mrv)
# [,1]
# 1969-12-31 23:55:00 58.2340
# 1970-01-01 23:55:00 268.5672
# 1970-01-02 23:55:00 260.3016
# 1970-01-03 23:55:00 310.5664
# 1970-01-04 23:55:00 302.1562
# 1970-01-05 23:55:00 272.9567
# 1970-01-06 23:55:00 291.0333
# 1970-01-07 23:55:00 309.7571
# 1970-01-08 23:55:00 229.9853
# 1970-01-09 23:55:00 298.3878
# 1970-01-10 18:00:00 215.6014
編集/代替構文
mrv <- lapply(split(full, "days"), MedRV)
names(mrv) <- index(full)[endpoints(full, on="days")]
as.xts(do.call(rbind, mrv))