summary.stablelearnerList {stablelearner} | R Documentation |
Summarize Results from Stability Assessment
Description
Summarizes and prints the results from stability assessments performed by
stability
.
Usage
## S3 method for class 'stablelearnerList'
summary(object, ..., reverse = TRUE,
probs = c(0.05, 0.25, 0.5, 0.75, 0.95), digits = 3, names = NULL)
Arguments
object |
a object of class |
... |
Arguments passed from or to other functions (currently ignored). |
reverse |
logical. If |
digits |
integer. The number of digits used to summarize the similarity
distribution in the |
probs |
a vector of probabilities used tosummarize the similarity
distribution in the |
names |
a vector of characters to specify a name for each result from
statistical learning in the |
See Also
Examples
library("partykit")
rval <- ctree(Species ~ ., data = iris)
stab <- stability(rval)
summary(stab)
summary(stab, reverse = FALSE)
summary(stab, probs = c(0.25, 0.5, 0.75))
summary(stab, names = "conditional inference tree")
[Package stablelearner version 0.1-5 Index]