本文介绍了如何记录在Rstudio中实现的knitr中的并行计算?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在编写基于代理的模拟.我计划运行并行的模拟实例,以减少计算时间.我将使用并行包.我想使用knitr记录我的代码.在开始之前,我想确认在用knitr编译的Markdown或Sweave文档中,运行并行程序包的功能是否存在任何问题.

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.

推荐答案

有效...

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

查看Rpubs上的输出::

See output on Rpubs::

http://rpubs.com/Thell/6679

这篇关于如何记录在Rstudio中实现的knitr中的并行计算?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 20:28