1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
\name{plot.mclustICL}
\alias{plot.mclustICL}
\title{ICL Plot for Model-Based Clustering}
\description{
Plots the ICL values returned by the \code{\link{mclustICL}} function.
}
\usage{
\method{plot}{mclustICL}(x, ylab = "ICL", \dots)
}
\arguments{
\item{x}{
Output from \code{\link{mclustICL}}.
}
\item{ylab}{
Label for the vertical axis of the plot.
}
\item{\dots}{
Further arguments passed to the \code{\link{plot.mclustBIC}} function.
}
}
\value{
A plot of the ICL values.
}
\seealso{
\code{\link{mclustICL}}
}
\examples{
\donttest{
data(faithful)
faithful.ICL = mclustICL(faithful)
plot(faithful.ICL)
}
}
\keyword{cluster}
% docclass is function
|