data(Baudry_etal_2010_JCGS_examples)
output <- clustCombi(ex4.1) # will run Mclust to get the MclustOutput
MclustOutput <- Mclust(ex4.1) # or you can run Mclust yourself
output <- clustCombi(ex4.1, MclustOutput) # and provide the output to clustCombi
# any further optional argument is passed to Mclust (see the Mclust documentation)
output <- clustCombi(ex4.1, modelName = "EEV", G = 1:15)
output # is of class clustCombi
# plots the hierarchy of combined solutions, then some "entropy plots" which
# may help one to select the number of classes (please see the article cited
# in the references)
plot(output, ex4.1)
# the selected model and number of components by Mclust, ie by BIC with MLE
# on Gaussian mixtures
output$MclustOutput
# the selected number of components by Mclust: the combined hierarchy then
# starts from this number of classes and ends at one
output$MclustOutput$G
# the matrix whose [i,k]th entry is the probability that observation i in
# the data belongs to the kth class according to the BIC solution
head( output$combiz[[output$MclustOutput$G]] )
# is the matrix whose [i,k]th entry is the probability that observation i in
# the data belongs to the kth class according to the first combined
# ((output$MclustOutput$G-1)-classes) solution
head( output$combiz[[output$MclustOutput$G-1]] )
# the matrix describing how to merge the 6-classes solution to get the
# 5-classes solution
output$combiM[[5]]
# for example the following code returns the label of the class (in the
# 5-classes combined solution) to which the 4th class (in the 6-classes
# solution) is assigned. Only two classes in the (K+1)-classes solution
# are assigned the same class in the K-classes solution: the two which
# are merged at this step...
output$combiM[[5]]# recover the 5-classes soft clustering from the 6-classes soft clustering
# and the 6 -> 5 "combining matrix"
all( output$combiz[[5]] == t( output$combiM[[5]] %*% t(output$combiz[[6]]) ) )
# the hard clustering under the 5-classes solution
head( output$classification[[5]] )
Run the code above in your browser using DataLab