summary.mclustDAtrain {mclust} | R Documentation |
Extracts the models selected in mclustDAtrain
and the corresponding classfications.
## S3 method for class 'mclustDAtrain' summary(object, ...)
object |
The output of |
... |
Not used. For generic/method consistency. |
A list identifying the model selected by
mclustDAtrain
for each
class of training data and the corresponding classification.
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 and A. E. Raftery (2006). MCLUST Version 3 for R: Normal Mixture Modeling and Model-Based Clustering, Technical Report no. 504, Department of Statistics, University of Washington.
odd <- seq(1, nrow(cross), by = 2) train <- mclustDAtrain(cross[odd,-1], labels = cross[odd,1]) summary(train)