R中的此错误是什么:找不到对象“接近”

时间:2018-06-28 15:25:51

标签: r

我想在我的数据集上使用randomForest!我的训练数据具有56个功能和32行,而我没有testdata,这是我的代码:

 $$ randomForest(x, y, xtest=NULL, ytest=NULL, ntree=500,
         mtry=if (!is.null(y) && !is.factor(y))
           max(floor(ncol(x)/3), 1) else floor(sqrt(ncol(x))),
         replace=TRUE, classwt=3, cutoff, strata,
         sampsize = if (replace) nrow(x) else ceiling(.632*nrow(x)),
         nodesize = if (!is.null(y) && !is.factor(y)) 5 else 1,
         maxnodes = NULL,
         importance=FALSE, localImp=FALSE, nPerm=1,
         proximity, oob.prox=proximity,
         norm.votes=TRUE, do.trace=FALSE,
         keep.forest=!is.null(y) && is.null(xtest), corr.bias=FALSE,
         keep.inbag=FALSE) $$

我收到此错误:找不到对象“邻近”

任何人都可以帮助我或描述我如何处理此错误吗?

0 个答案:

没有答案