clustControl | R Documentation |
This function creates a list with parameters for Modal Baum-Welch (MBW)
clustering algorithm used as an argument for hmmvbClust
.
clustControl(minSize = 1, modeTh = 0.01, useL1norm = FALSE, getlikelh = FALSE)
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. |
The named list with parameters.
hmmvbTrain
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.