File: plot.mclustICL.Rd

package info (click to toggle)
r-cran-mclust 6.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,540 kB
  • sloc: fortran: 13,298; ansic: 201; sh: 4; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
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