grow.r
来自「是基于linux系统的C++程序」· R 代码 · 共 10 行
R
10 行
grow <- function(x, ...) UseMethod("grow")grow.default <- function(x, ...) stop("grow has not been implemented for this class of object")grow.randomForest <- function(x, how.many, ...) { y <- update(x, ntree=how.many) combine(x, y)}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?