【发布时间】:2020-06-16 07:07:46
【问题描述】:
我正在尝试在 mlr 中编写自己的插补方法,使用 makeImputeMethod 通过链式方程与 R 中的 mouse 包执行多重插补。我的 imputeMice() 方法运行到完成,但完成后出现以下错误:
Error in `[.data.frame`(data, ind) : undefined columns selected
我不知道为什么,也不知道它来自哪里。这是我写的代码:
library(survival)
#> Warning: package 'survival' was built under R version 3.6.3
library(mlr)
#> Warning: package 'mlr' was built under R version 3.6.3
#> Loading required package: ParamHelpers
#> Warning: package 'ParamHelpers' was built under R version 3.6.3
#> 'mlr' is in maintenance mode since July 2019. Future development
#> efforts will go into its successor 'mlr3' (<https://mlr3.mlr-org.com>).
library(lattice)
#> Warning: package 'lattice' was built under R version 3.6.3
library(mice)
#> Warning: package 'mice' was built under R version 3.6.3
#>
#> Attaching package: 'mice'
#> The following objects are masked from 'package:base':
#>
#> cbind, rbind
data(pbc)
task_id = "PBC"
pbc[pbc$status == 2, "status"] = 1
pbc.task <- makeSurvTask(id = task_id, data = pbc, target = c("time", "status"))
outer = makeResampleDesc("CV", iters=2, stratify=TRUE) # Tuning: 5-fold CV, no repeats
imputeMice = function() {
makeImputeMethod(
learn = function(data, target, col) {
return(list(values = data))
},
impute = function(data, target, col, values) {
data = as.data.frame(data)
excl = names(data)[ sapply(data, is.factor) ]
predmat = mice::quickpred(data, minpuc=0, mincor=0, exclude=excl)
imp_data = mice::mice(data, pred=predmat, seed = 23109, printFlag=FALSE)
x = mice::complete(imp_data)
print("Imputation completed")
return(x)
}
)
}
lrn = makeFilterWrapper(
makeLearner(cl="surv.coxph", id = "cox.filt", predict.type="response"),
fw.method="univariate.model.score",
fw.perc=0.1,
cache=TRUE
)
lrn = makeImputeWrapper(lrn, classes = list(numeric = imputeMice(), integer = imputeMice(), factor = imputeMice()))
res = resample(learner = lrn, task = pbc.task, resampling = outer, models = TRUE,
measures = list(cindex), show.info = TRUE, extract = getFilteredFeatures)
#> Resampling: cross-validation
#> Measures: cindex
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> [1] "Imputation completed"
#> Error in `[.data.frame`(data, ind): undefined columns selected
由reprex package (v0.3.0) 于 2020 年 6 月 16 日创建
很明显,函数 imputeMice() 是在 data.frame pbc 的每一列上调用的。但是使用鼠标我们应该只需要调用这个函数一次,它会在每一列上执行插补。在 mlr 中可以吗?
【问题讨论】: