cor_FM_index | R Documentation |
Calculates the FM_index Correlation for some k.
cor_FM_index(dend1, dend2, k, ...)
dend1 |
a dendrogram. |
dend2 |
a dendrogram. |
k |
an integer (number of clusters to cut the tree) |
... |
not used. |
A correlation value between 0 to 1 (almost identical clusters for some k)
FM_index, cor.dendlist, Bk
set.seed(23235)
ss <- sample(1:150, 10)
hc1 <- iris[ss, -5] %>%
dist() %>%
hclust("com")
hc2 <- iris[ss, -5] %>%
dist() %>%
hclust("single")
dend1 <- as.dendrogram(hc1)
dend2 <- as.dendrogram(hc2)
cor_FM_index(dend1, dend2, k = 2)
cor_FM_index(dend1, dend2, k = 3)
cor_FM_index(dend1, dend2, k = 4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.