| MixModelsListsSet {ClassifyR} | R Documentation |
Stores a list of lists of trained mixture models, to prevent them being unintentionally being unlisted during cross-validation. Not intended for end-user.
MixModelsListsSet(set)
Creates a MixModelsListsSet object which stores the mixture models.
setA list as long as the number of classes in the data set. Each element is a list, which each element of is a mixture model trained on one feature.
Dario Strbenac
if(require(Rmixmod))
{
mixModels <- list(Good = list(mixmodCluster(rnorm(20), nbCluster = 1:2)),
Poor = list(mixmodCluster(rnorm(20), nbCluster = 1:2)))
MixModelsListsSet(mixModels)
}