Easiest way to describe this is show the code. I have a nested foreach loop that works fine, trying to prepare to compile as an R package, thus remove "library(foreach)" in the code. My function looks like this:
Calcs <- function (...) {
results <- data.frame (foreach::foreach (j = 1:NumSim, .combine = acomb,
.options.mpi=opts1)
%:%
foreach::foreach (i = 1:PopSize, .combine=rbind,
.options.mpi=opts2,
.export = c (ls(globalenv())),
.packages = c("zoo", "msm", "FAdist"))
foreach::`%dopar%` {
output <- if(rbinom(1,1,ProSecPos) > 0)
replicate(DayNum, eval(call("PrbInfBep")))
else rep(0, DayNum)
output2 <- data.frame(khf(output))
}
)
}
I get an "unexpected symbol" error at the start of the second "foreach:foreach" statement like this.
./functions/Parallel.R:19:28: unexpected symbol
18: .packages = c("zoo", "msm", "FAdist"))
19: foreach
^
For some strange reason it seems happy with the "%:%", or it just hasn't worked back to that error yet. Do I need something clever like foreach::foreach::
%dopar%`
I think
foreach
use some non-standard evaluation so that it is not straightforward to use in a package just by addingforeach::
before everything. What you could easily do instead is to use#' @import foreach
in the roxygen2 documentation.If you really want to use
foreach::
, you could but it is not pretty. For example, if you want to transformyou can do
PS: you will have a NOTE complaining about
i
andj
. To remove it, you can addglobalVariables(c("i", "j"))
somewhere in your package.