View source: R/clustering.algorithm.R
select_linkage | R Documentation |
This function contrasts different hierarchical clustering algorithms on the phylogenetic beta diversity matrix for degree of data distortion using Sokal & Rohlf’s (1962) cophenetic correlation coefficient.
select_linkage(x)
x |
a numeric matrix, data frame or "dist" object. |
A numeric value corresponding to the good clustering algorithm for the distance matrix
If plot = TRUE, a barplot of cophenetic correlation for all the clustering algorithms is drawn.
Sokal, R.R. & Rohlf, F.J. (1962) The comparison of dendrograms by objective methods. Taxon 11: 33–40.
data(africa)
tree <- africa$phylo
bc <- beta_diss(africa$comm)
y <- select_linkage(bc[[1]])
barplot(y, horiz = TRUE, las = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.