File: gmm_size_probability.Rd

package info (click to toggle)
r-cran-mixturefitting 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 448 kB
  • sloc: ansic: 518; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\name{gmm_size_probability}
\alias{gmm_size_probability}
\docType{methods}
\title{The Gaussian Mixture Distribution}
\description{
    Calculates the posterior probability of a Gaussian mixture with \emph{n} components.
    Internally, it attempts to maximize log-likelihood of data by calling optim() and returns the list as received from optim().
}
\usage{
    gmm_size_probability( x, n, method = "SANN" )
}
\arguments{
    \item{x}{data vector}
    \item{n}{number of mixture components}
    \item{method}{optimization method passed to optim()}
}
\value{
    List representing the converged optim() run.
}
\author{Andrius Merkys}