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
|
\name{mclustLoglik}
\alias{mclustLoglik}
\alias{print.mclustLoglik}
\title{Log-likelihood from a table of BIC values for parameterized Gaussian mixture models}
\description{
Compute the maximal log-likelihood from a table of BIC values contained in a \code{'mclustBIC'} object as returned by function \code{\link{mclustBIC}}.
}
\usage{
mclustLoglik(object, \dots)
}
\arguments{
\item{object}{An object of class \code{'mclustBIC'} containing the
BIC values as returned by a call to \code{\link{mclustBIC}}.
}
\item{\dots}{
Catches unused arguments in an indirect or list call via \code{do.call}.
}
}
\value{
An object of class \code{'mclustLoglik'} containing the maximal log-likelihood values for the Gaussian mixture models provided as input.
}
\seealso{
\code{\link{mclustBIC}}.
}
\examples{
\donttest{
BIC <- mclustBIC(iris[,1:4])
mclustLoglik(BIC)
}
}
\keyword{cluster}
|