init.options {clustTMB} | R Documentation |
Initialization options with S3 classes
init.options(
init.method = "hc",
hc.options = list(modelName = "VVV", use = "SVD"),
exp.init = list(mahala = TRUE),
mix.method = "Gower kmeans",
user.class = integer()
)
init.method |
Name of method used to set initial values. If init.method = 'user', must define 'user.class' with a classification vector. |
hc.options |
Model names and use when init.method is 'hc' following conventions of mclust::mclust.options() |
exp.init |
Turn on mahala initialization when expert network |
mix.method |
Initialization methods when data are mixed. Default method when data are Tweedie distributed. |
user.class |
Vector of classification vector set by user and required when init.method = 'user' |
list of initialization specifications
init.options()
init.options(init.method = "hc")
init.options(init.method = "mixed")
init.options(init.method = "user", user.class = c(1, 1, 2, 1, 3, 3, 1, 2))