clustControl {HDclust} | R Documentation |
Parameters for MBM clustering algorithm.
Description
This function creates a list with parameters for Modal Baum-Welch (MBW)
clustering algorithm used as an argument for hmmvbClust
.
Usage
clustControl(minSize = 1, modeTh = 0.01, useL1norm = FALSE,
getlikelh = FALSE)
Arguments
minSize |
Minimum cluster size. Clusters that contain the number of data points
smaller than |
modeTh |
Distance parameter that controls mode merging. Larger values promote merging of different clusters. |
useL1norm |
A logical value indicating whether or not L1 norm will be used to calculate the distance. |
getlikelh |
A logical value indicating whether or not to calculate the loglikelihood for every data point. |
Value
The named list with parameters.
See Also
Examples
# avoid clusters of size < 60
Vb <- vb(1, dim=4, numst=2)
set.seed(12345)
hmmvb <- hmmvbTrain(iris[,1:4], VbStructure=Vb)
clust <- hmmvbClust(iris[,1:4], model=hmmvb, control=clustControl(minSize=60))
show(clust)
[Package HDclust version 1.0.3 Index]