mstep:
M-step for parameterized Gaussian mixture models.
Description
Maximization step in the EM algorithm for parameterized Gaussian
mixture models.
Usage
mstep(modelName, data, z, prior = NULL, warn = NULL, ...)
Arguments
modelName
A character string indicating the model. The help file for
mclustModelNames
describes the available models.
data
A numeric vector, matrix, or data frame of observations.
Categorical variables are not allowed.
If a matrix or data frame, rows correspond to observations and
columns correspond to variables.
z
A matrix whose [i,k]
th entry is the
conditional probability of the ith observation belonging to
the kth component of the mixture.
In analyses involving noise, this should not include the
conditional probabilities for the noise component.
prior
Specification of a conjugate prior on the means and variances.
The default assumes no prior.
warn
A logical value indicating whether or not certain warnings
(usually related to singularity) should be issued when the
estimation fails. The default is given by mclust.options("warn")
.
...
Catches unused arguments in indirect or list calls via do.call
.
Value
A list including the following components:
References
C. Fraley and A. E. Raftery (2002).
Model-based clustering, discriminant analysis, and density estimation.
Journal of the American Statistical Association 97:611-631. C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012).
mclust Version 4 for R: Normal Mixture Modeling for Model-Based
Clustering, Classification, and Density Estimation.
Technical Report No. 597, Department of Statistics, University of Washington.Examples
Run this codemstep(modelName = "VII", data = iris[,-5], z = unmap(iris[,5]))
Run the code above in your browser using DataLab