summary.stablelearnerList {stablelearner} | R Documentation |
Summarizes and prints the results from stability assessments performed by
stability
.
## 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)
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 |
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")