Learn R Programming

forestFloor (version 1.11.1)

print.forestFloor: print summary of forestFloor.Object

Description

This function simply states the obvious and returns the elements inside the object list.

Usage

# S3 method for forestFloor_regression
print    (x,...)
# S3 method for forestFloor_multiClass
print(x,...)

Arguments

x

x also abbreviated ff, forestFloor_Object the output from the forestFloor function

...

... other arguments passed to generic print function

Details

prints short help text for usage of a forestFloor_object

Examples

Run this code

#simulate data
obs=1000 
vars = 6 
X = data.frame(replicate(vars,rnorm(obs))) 
Y = with(X, X1^2 + sin(X2*pi) + 2 * X3 * X4 + 0.5 * rnorm(obs)) 

#grow a forest, remeber to include inbag
rfo=randomForest::randomForest(X,Y,keep.inbag=TRUE)

#compute topology
ff = forestFloor(rfo,X)

#print forestFloor
print(ff) 

Run the code above in your browser using DataLab