flexclustControl-class {flexclust} | R Documentation |
Hyperparameters for cluster algorithms.
Objects can be created by calls of the form
new("flexclustControl", ...)
. In addition, named lists can be
coerced to flexclustControl
objects, names are completed if unique (see examples).
Objects of class flexclustControl
have the following slots:
iter.max
:tolerance
:tolerance
.verbose
:verbose
iterations. If 0,
no output is generated during model fitting.classify
:"auto"
,
"weighted"
, "hard"
or "simann"
.gamma
:simann
:classify="simann"
).ntry
:min.size
:
Objects of class cclustControl
inherit from
flexclustControl
and have the following additional slots:
method
:"polynomial"
or "exponential"
.pol.rate
:exp.rate
ng.rate
:Friedrich Leisch
## have a look at the defaults new("flexclustControl") ## corce a list mycont = list(iter=500, tol=0.001, class="w") as(mycont, "flexclustControl") ## some additional slots as(mycont, "cclustControl")