Reputation: 1357
I'm coding an agent-based simulation. I plan to run parallel instances of the simulation to reduce computing time. I will use the parallel package. I want to document my code using knitr. Before I start, I'd like to confirm whether there will be any issues running the parallel package's functions from within a Markdown or Sweave document that I compile with knitr.
Upvotes: 1
Views: 1193
Reputation: 5958
It works...
```{r parallel-do}
library(foreach)
library(parallel)
library(doParallel)
demo(sincParallel)
````
See output on Rpubs::
Upvotes: 4