summary.crtree {radiant.model} | R Documentation |
Summary method for the crtree function
Description
Summary method for the crtree function
Usage
## S3 method for class 'crtree'
summary(object, prn = TRUE, splits = FALSE, cptab = FALSE, modsum = FALSE, ...)
Arguments
object |
Return value from |
prn |
Print tree in text form |
splits |
Print the tree splitting metrics used |
cptab |
Print the cp table |
modsum |
Print the model summary |
... |
further arguments passed to or from other methods |
Details
See https://radiant-rstats.github.io/docs/model/crtree.html for an example in Radiant
See Also
crtree
to generate results
plot.crtree
to plot results
predict.crtree
for prediction
Examples
result <- crtree(titanic, "survived", c("pclass", "sex"), lev = "Yes")
summary(result)
result <- crtree(diamonds, "price", c("carat", "color"), type = "regression")
summary(result)
[Package radiant.model version 1.6.6 Index]