Learn R Programming

aurelius (version 0.8.4)

extract_params.randomForest: extract_params.randomForest

Description

Extracts parameters from a forest made by the randomForest function

Usage

# S3 method for randomForest
extract_params(object, which_tree = 1, ...)

Arguments

object

an object of class "randomForest"

which_tree

the number of the tree to extract

...

further arguments passed to or from other methods

Value

a list that is extracted from the randomForest object

Examples

Run this code
dat <- data.frame(X1 = runif(100), 
                  X2 = rnorm(100))
dat$Y <- factor((rexp(100,5) + 5 * dat$X1 - 4 * dat$X2) > 0)

model <- randomForest::randomForest(Y ~ X1 + X2, data=dat, ntree=10)
my_tree <- extract_params(model, 1)

Run the code above in your browser using DataLab