summary.dtree {radiant.model} | R Documentation |
Summary method for the dtree function
Description
Summary method for the dtree function
Usage
## S3 method for class 'dtree'
summary(object, input = TRUE, output = FALSE, dec = 2, ...)
Arguments
object |
Return value from |
input |
Print decision tree input |
output |
Print decision tree output |
dec |
Number of decimals to show |
... |
further arguments passed to or from other methods |
Details
See https://radiant-rstats.github.io/docs/model/dtree.html for an example in Radiant
See Also
dtree
to generate the results
plot.dtree
to plot results
sensitivity.dtree
to plot results
Examples
dtree(movie_contract, opt = "max") %>% summary(input = TRUE)
dtree(movie_contract, opt = "max") %>% summary(input = FALSE, output = TRUE)
[Package radiant.model version 1.6.6 Index]