mclustICL(data, G = NULL, modelNames = NULL,
initialization = list(hcPairs = NULL,
subset = NULL,
noise = NULL),
...)## S3 method for class 'mclustICL':
summary(object, G, modelNames, \dots)
G = 1:9
.mclustModelNames
describes the available models.
The default is:
G = 1:9
.'mclustICL'
containing the the ICL criterion
for the specified mixture models and numbers of clusters.The corresponding print
method shows the matrix of values and the top models according to the ICL criterion. The summary
method shows only the top models.
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.
plot.mclustICL
,
Mclust
,
mclustBIC
,
mclustBootstrapLRT
,
bic
,
icl
data(faithful)
faithful.ICL <- mclustICL(faithful)
faithful.ICL
summary(faithful.ICL)
plot(faithful.ICL)
# compare with
faithful.BIC = mclustBIC(faithful)
faithful.BIC
plot(faithful.BIC)
Run the code above in your browser using DataLab