| summary.gg | R Documentation |
Each summary.gg_*() method returns a summary.gg object
containing a header line and per-class diagnostic statistics (OOB error
curve, top VIMP variables, time range, integrated CRPS, etc.).
print.summary.gg() renders the object to the console.
## S3 method for class 'summary.gg'
print(x, ...)
## S3 method for class 'gg_error'
summary(object, ...)
## S3 method for class 'gg_vimp'
summary(object, ...)
## S3 method for class 'gg_rfsrc'
summary(object, ...)
## S3 method for class 'gg_variable'
summary(object, ...)
## S3 method for class 'gg_partial'
summary(object, ...)
## S3 method for class 'gg_partial_rfsrc'
summary(object, ...)
## S3 method for class 'gg_partialpro'
summary(object, ...)
## S3 method for class 'gg_roc'
summary(object, ...)
## S3 method for class 'gg_survival'
summary(object, ...)
## S3 method for class 'gg_brier'
summary(object, ...)
x |
A |
... |
Not currently used. |
object |
A |
A summary.gg object (a list with header and
body character vectors), returned invisibly from
print.summary.gg.
print.gg, autoplot.gg
set.seed(42)
airq <- na.omit(airquality)
rf <- randomForestSRC::rfsrc(Ozone ~ ., data = airq, ntree = 50)
summary(gg_error(rf))
summary(gg_vimp(rf))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.