File: icl.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 (42 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (4)
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
\name{icl}
\alias{icl}
\title{
  ICL for an estimated Gaussian Mixture Model
}
\description{
Computes the ICL (Integrated Complete-data Likelihood) for criterion for a Gaussian Mixture Model fitted by \code{\link{Mclust}}.
}

\usage{
icl(object, \dots)
}

\arguments{
  \item{object}{
    An object of class \code{'Mclust'} resulting from a call to \code{\link{Mclust}}.
  }
  \item{\dots}{Further arguments passed to or from other methods.}
}

\value{
  The ICL for the given input MCLUST model.
}

\references{
  Biernacki, C., Celeux, G., Govaert, G. (2000). 
  Assessing a mixture model for clustering with the integrated completed likelihood.
  \emph{IEEE Trans. Pattern Analysis and Machine Intelligence}, 22 (7), 719-725.
}
\seealso{
  \code{\link{Mclust}},
  \code{\link{mclustBIC}},
  \code{\link{mclustICL}},
  \code{\link{bic}}.
}

\examples{
mod <- Mclust(iris[,1:4])
icl(mod)
}

\keyword{cluster}