| FLXcontrol-class {flexmix} | R Documentation |
Hyperparameters for the EM algorithm.
Objects can be created by calls of the form new("FLXcontrol",
...). In addition, named lists can be coerced to FLXcontrol
objects, names are completed if unique (see examples).
iter.max:minprior:tolerance:tolerance.verbose:verbose iterations. If 0,
no output is generated during model fitting.classify:"auto",
"weighted", "hard" (or "CEM"),
"random" or ("SEM").nrep:stepFlexmix() to determine the mixture.
Run new("FLXcontrol") to see the default settings of all slots.
Friedrich Leisch and Bettina Gruen
## have a look at the defaults
new("FLXcontrol")
## corce a list
mycont = list(iter=200, tol=0.001, class="r")
as(mycont, "FLXcontrol")