boxplot.stablelearnerList | R Documentation |
Illustrates the results from stability assessments performed by
stability
using boxplots.
## S3 method for class 'stablelearnerList'
boxplot(x, ..., main = NULL, xlab = NULL, ylab = NULL, reverse = TRUE)
## S3 method for class 'stablelearner'
boxplot(x, ...)
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 |
stability
, summary.stablelearnerList
library("partykit")
r1 <- ctree(Species ~ ., data = iris)
library("rpart")
r2 <- rpart(Species ~ ., data = iris)
stab <- stability(r1, r2, names = c("ctree", "rpart"))
boxplot(stab)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.