summary.crtree: Summary method for the crtree function

summary.crtreeR 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 crtree

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)

radiant.model documentation built on Oct. 16, 2023, 9:06 a.m.