mclustICL(data, G = NULL, modelNames = NULL, initialization = list(hcPairs = NULL, subset = NULL, noise = NULL), x = NULL, ...)
"summary"(object, G, modelNames, ...)
G = 1:9
.
mclustModelNames
describes the available models.
The default is:
'mclustICL'
. If supplied, mclustICL
will use the settings in x
to produce another object of
class 'mclustICL'
, but with G
and modelNames
as specified in the arguments. Models that have already been computed
in x
are not recomputed. All arguments to mclustICL
except data
, G
and modelName
are
ignored and their values are set as specified in the attributes of
x
.
Defaults for G
and modelNames
are taken from x
.
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.
plot.mclustICL
,
Mclust
,
mclustBIC
,
mclustBootstrapLRT
,
bic
,
icl
data(faithful)
faithful.ICL <- mclustICL(faithful)
faithful.ICL
summary(faithful.ICL)
plot(faithful.ICL)
## Not run:
# # compare with
# faithful.BIC = mclustBIC(faithful)
# faithful.BIC
# plot(faithful.BIC)
# ## End(Not run)
Run the code above in your browser using DataLab