boxplot.stablelearnerList {stablelearner} | R Documentation |
Illustrate Results from Stability Assessment
Description
Illustrates the results from stability assessments performed by
stability
using boxplots.
Usage
## S3 method for class 'stablelearnerList'
boxplot(x, ..., main = NULL, xlab = NULL, ylab = NULL, reverse = TRUE)
## S3 method for class 'stablelearner'
boxplot(x, ...)
Arguments
x |
an object of class |
... |
Arguments passed to |
main |
a character specifying the title. By default set to |
xlab |
a character specifying the title for the x axis. By default set
to |
ylab |
a character specifying the title for the y axis. By default set
to |
reverse |
logical. If |
See Also
stability
, summary.stablelearnerList
Examples
library("partykit")
r1 <- ctree(Species ~ ., data = iris)
library("rpart")
r2 <- rpart(Species ~ ., data = iris)
stab <- stability(r1, r2, names = c("ctree", "rpart"))
boxplot(stab)
[Package stablelearner version 0.1-5 Index]