rattle (version 5.3.0)

printRandomForests: Print a representation of the Random Forest models to the console

Description

A randomForest model, by default, consists of 500 decision trees. This function walks through each tree and generates a set of rules which are printed to the console. This takes a considerable amount of time and is provided for users to access the actual model, but it is not yet used within the Rattle GUI. It may be used to display the output of the RF (but it takes longer to generate than the model itself!). Or it might only be used on export to PMML or SQL.

Usage

printRandomForests(model, models=NULL, include.class=NULL, format="")

Arguments

model

a randomForest model.

models

a list of integers limiting the models in MODEL that are displayed.

include.class

limit the output to the specific class.

format

possible values are "VB".

References

Package home page: https://rattle.togaware.com

Examples

Run this code
# NOT RUN {
## Display a ruleset for a specific model amongst the 500.
# }
# NOT RUN {
printRandomForests(rfmodel, 5)
# }
# NOT RUN {
## Display a ruleset for specific models amongst the 500.
# }
# NOT RUN {
printRandomForests(rfmodel, c(5,10,15))
# }
# NOT RUN {
## Display a ruleset for each of the 500 models.
# }
# NOT RUN {
printRandomForests(rfmodel)
# }

Run the code above in your browser using DataLab