我正在根据存储在xts对象列表中的多个观测值建立时间序列(xts)。 有时缺少提取的数据,R报告错误:
"Error in NextMethod(.Generic) : replacement has length zero"
我希望R报告不适用。我猜答案就在tryCatch()中,但我无法确定。
# Here is a MCVE:
Contract <- list(xts(1:12,order.by=Sys.Date()-1:12),
xts(1:10,order.by=Sys.Date()-1:10),
xts(1:8,order.by=Sys.Date()-2:9))
Vol <- xts(matrix(0, 12,3, byrow = FALSE),order.by=Sys.Date()-1:12)
for (A in 1:12){for (B in 1:3){
Vol[A,B] <- Contract[[B]][index(Vol)[A]]
}}
Vol
任何帮助将不胜感激。 (此外,如果有人巧妙地将双循环向量化...)
答案 0 :(得分:1)
我们可以检查是否将生成的观察结果强制转换为数字产量numeric(0)
。
这是sapply()
的解决方案,它可以根据所有日期的向量创建矩阵。
all.dates <- Sys.Date() - 1:12
MX <- t(sapply(seq_along(all.dates), function(x)
sapply(seq_along(Contract), function(y) {
obs <- Contract[[y]][all.dates[x]]
if (identical(as.numeric(obs), numeric(0))) # reporting NA
xts(NA, all.dates[x])
else
obs
}
)))
Vol <- xts(MX, order.by=all.dates)
rm(MX) # clean up
> Vol
[,1] [,2] [,3]
2019-01-09 12 NA NA
2019-01-10 11 NA NA
2019-01-11 10 10 NA
2019-01-12 9 9 8
2019-01-13 8 8 7
2019-01-14 7 7 6
2019-01-15 6 6 5
2019-01-16 5 5 4
2019-01-17 4 4 3
2019-01-18 3 3 2
2019-01-19 2 2 1
2019-01-20 1 1 NA
请问这是否是您期望的结果?