View source: R/random_forest.R
printRandomForests | R Documentation |
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.
printRandomForests(model, models=NULL, include.class=NULL, format="")
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". |
Package home page: https://rattle.togaware.com
## Display a ruleset for a specific model amongst the 500. ## Not run: printRandomForests(rfmodel, 5) ## Display a ruleset for specific models amongst the 500. ## Not run: printRandomForests(rfmodel, c(5,10,15)) ## Display a ruleset for each of the 500 models. ## Not run: printRandomForests(rfmodel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.