简体   繁体   中英

How do I document parallel computations within knitr implemented in Rstudio?

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.

It works...

Parallel Example in RStudio as run via knitr after being written in R markdown...

```{r parallel-do}
library(foreach)
library(parallel)
library(doParallel)
demo(sincParallel)
````

See output on Rpubs::

http://rpubs.com/Thell/6679

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM