File: smm_init_vector_kmeans.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 (25 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download
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
\name{smm_init_vector_kmeans}
\alias{smm_init_vector_kmeans}
\docType{methods}
\title{Estimate Student's t Mixture parameters using Expectation Maximization.}
\description{
    Estimate an initialization vector for Student's t mixture fitting via Expectation Maximization.
    R implementation of k-means in kmeans() is used to find data point assignment to clusters.
    s_fit_primitive() is then used to estimate component parameters for each cluster.
}
\usage{
    smm_init_vector_kmeans( x, m )
}
\arguments{
    \item{x}{data vector}
    \item{m}{number of mixture components}
}
\value{
    Parameter vector of 3*\emph{n} parameters, where \emph{n} is
    number of mixture components. Structure of p vector is
    p = c( A1, A2, ..., A\emph{n}, mu1, mu2, ..., mu\emph{n}, sigma1, sigma2, ..., sigma\emph{n} ),
    where A\emph{i} is the proportion of \emph{i}-th component,
    mu\emph{i} is the location of \emph{i}-th component,
    sigma\emph{i} is the scale of \emph{i}-th component.
}
\author{Andrius Merkys}