作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的示例中,我尝试使用 missForest 来估算缺失值。为了加快我使用 foreach 包的过程。我在其中使用了 100 棵树,然后将这些树传递给 missForest 函数。这是并行 missForest 的正确方法吗?
这是示例和我所做的:
library(foreach)
library(missForest)
data(iris)
iris.na <- iris
set.seed(111)
## artificially drop some data values.
for (i in 1:4) iris.na[sample(150, sample(20)), i] <- NA
set.seed(222)
system.time(rf <- foreach(ntree=100, .combine=combine,
.multicombine=TRUE,.packages='missForest') %dopar%
{ missForest(iris.na)$ximp})
最佳答案
我认为这应该可以解决您的问题。
library(doParallel)
library(missForest)
data(iris)
iris.na <- iris
set.seed(111)
## artificially drop some data values.
for (i in 1:4) iris.na[sample(150, sample(20)), i] <- NA
set.seed(222)
registerDoParallel(cores=3)
out <- missForest(iris.na, ntree = 100, parallelize = "forests")
关于r - 并行missForest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19642592/
我不是一个有经验的编码员,过去几周刚刚开始学习 R,以帮助完成一些与我的博士相关的工作。这是问题: 我一直在尝试使用 R 中的 missForest 包将缺失值归入数据集中许多小时,但没有成功。下面是
我正在使用一个名为 missForest 的包来估计我的数据集中的缺失值。我的问题是:我们如何并行执行此过程以缩短获得结果所需的时间?请引用这个例子(来自 missForest 包): data(i
在使用“missforest”包在 R 中执行数据插补时,需要帮助解决以下错误。 > imputed<- missForest(dummy, maxiter = 10, ntree = 100, va
运行 missForest 包后,我无法获取估算的数据帧。 我正在使用样本数据来检查 missForest。 iris.na <- iris set.seed(111) for (i in 1:4)
我是一名优秀的程序员,十分优秀!