upgma {poppr} | R Documentation |
UPGMA
Description
UPGMA clustering. Just a wrapper function around hclust
.
Usage
upgma(d)
Arguments
d |
A distance matrix. |
Value
A phylogenetic tree of class phylo
.
Author(s)
Klaus Schliep klaus.schliep@gmail.com
See Also
Examples
library(ape)
data(woodmouse)
dm <- dist.dna(woodmouse)
tree <- upgma(dm)
plot(tree)
[Package poppr version 2.9.6 Index]