CORElearn (version 1.54.2)

getRFsizes: Get sizes of the trees in RF

Description

Get numerical characteristics of the trees in a RF model related to the size and depth.

Usage

getRFsizes(model, type=c("size", "sumdepth"))

Arguments

model

The model structure as returned by CoreModel.

type

The required characteristics.

Value

Numerical vector of the length equal to the number of trees in RF.

Details

Size is the number of leaves. The sum of depths means the sum of the depth of all leaves.

See Also

CoreModel, CORElearn.

Examples

Run this code
# NOT RUN {
# uses iris data set

# build random forests model with certain parameters, 
# do not make too many and too large trees
modelRF <- CoreModel(Species ~ ., iris, model="rf", 
              selectionEstimator="MDL", minNodeWeightRF=50, 
              rfNoTrees=50, maxThreads=1)

getRFsizes(modelRF) 

destroyModels(modelRF) # clean up
# }

Run the code above in your browser using DataLab