summary | R Documentation |
rfPermute
or randomForest
models.Combine plots of error traces and inbag rates.
## S3 method for class 'randomForest'
summary(object, ...)
## S3 method for class 'rfPermute'
summary(object, ...)
object |
a |
... |
arguments passed to |
A combination of plots from plotTrace
and
plotInbag
as well as summary confusion matrices
(classification) or error rates (regression) from the model.
Eric Archer eric.archer@noaa.gov
plotTrace
, plotInbag
# A regression model using the ozone example
data(airquality)
ozone.rp <- rfPermute(
Ozone ~ ., data = airquality, na.action = na.omit,
ntree = 100, nrep = 50, num.cores = 1
)
summary(ozone.rp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.