我有一个与lapply
一起使用的函数,但如果我使用mclapply
进行尝试,则会返回错误。函数的参数是多变量XTS。这是一个示例:
library(quantmod)
library(doMC)
registerDoMC(4)
test <- function(x){
return(mean(x))
}
myEnv <- new.env()
getSymbols(c("^GSPC", "^RUT"), env=myEnv)
data <- do.call(merge, c(eapply(myEnv, Ad), all=TRUE))
lapply(data, test)
mclapply(data, test)
lapply
按预期返回结果,但mclapply
返回:
Error in `[.xts`(X, seq(i, length(X), by = cores)) :
subscript out of bounds
有人可以帮助我吗?感谢。
R version 2.15.2 (2012-10-26)
Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
locale:
[1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] doMC_1.2.5 multicore_0.1-7 iterators_1.0.6 foreach_1.4.0 quantmod_0.3-22 TTR_0.21-1 xts_0.9-0 zoo_1.7-9
[9] Defaults_1.1-1
loaded via a namespace (and not attached):
[1] codetools_0.2-8 grid_2.15.2 lattice_0.20-10 Rcpp_0.9.15 tools_2.15.2
答案 0 :(得分:3)
xts
对象很有趣:
length(data)
# [1] 3010
data[3010]
# Error in `[.xts`(data, 3010) : subscript out of bounds
而且,mclapply
不喜欢......
你会发现mclapply(as.list(data), test)
会起作用,尽管文档说:
X
:向量(原子或列表)或表达式向量。其他对象(包括被分类的对象)将由as.list
强制执行。
去图......作者可能值得一提。