我正在尝试将每日系列转换为星期五结束的每周系列。每个系列都有缺失值,因此merge
函数会留下一些NA。我尝试使用na.locf
和to.weekly
,但对我不起作用。我正在创建一个每周日期对象,其中包含该时段的所有星期五,并且由于某些星期三或星期四的某些星期几结束,我无法匹配这些索引。
理想情况下,我想覆盖那些周末没有结束的最后一个值的日期。
library(quantmod)
library(xts)
TickerL <- c("ABE.MC", "FNC.MI", "ENI.MI")
getSymbols(TickerL,from = "2000-01-01")
pr <- list(ABE.MC[,4], FNC.MI[,4], ENI.MI[,4])
w.dates <- seq(from=min(index(ABE.MC)),to=max(index(ABE.MC)), by='days')
w.dates <- w.dates[.indexwday(as.xts(w.dates))==5]
if (max(index(ABE.MC)) > max(w.dates)) w.dates <- c(w.dates,seq(last(w.dates),by='weeks',length.out=2)[2])
pr2 <- lapply(pr, function(x) do.call(rbind, lapply(split(x, "weeks"), last)))
pr3 <- do.call(merge, pr2)
答案 0 :(得分:0)
感谢@G。格洛腾迪克动物园包装插图中的函数nextfri
就行了!
# given a Date, x, return the Date of the next Friday
nextfri <- function(x) 7 * ceiling(as.numeric(x - 1)/7) + as.Date(1)
pr2 <- lapply(pr, function(x) x <- do.call(rbind, lapply(split(x, "weeks"), last))
index(x) <- nextfri(index(x))
x
)
pr3 <- do.call(merge, pr2)