boxplot.bclust {e1071} | R Documentation |
Boxplot of Cluster Profiles
Description
Makes boxplots of the results of a bagged clustering run.
Usage
## S3 method for class 'bclust'
boxplot(x, n=nrow(x$centers), bycluster=TRUE,
main=deparse(substitute(x)), oneplot=TRUE,
which=1:n, ...)
Arguments
x |
Clustering result, object of class |
n |
Number of clusters to plot, by default the number of clusters
used in the call of |
bycluster |
If |
main |
Main title of the plot, by default the name of the cluster object. |
oneplot |
If |
which |
Number of clusters which should be plotted, default is all clusters. |
... |
Additional arguments for |
Author(s)
Friedrich Leisch
Examples
data(iris)
bc1 <- bclust(iris[,1:4], 3, base.centers=5)
boxplot(bc1)
[Package e1071 version 1.7-14 Index]