Learn R Programming

phangorn (version 0.0-2)

upgma: UPGMA

Description

UPGMA clustering. Just a wrapper function around hclust.

Usage

upgma(D, method = "average", ...)

Arguments

D
A distance matrix.
method
The agglomeration method to be used. This should be (an unambiguous abbreviation of) one of "ward", "single", "complete", "average", "mcquitty", "median" or "centroid". The default is "average".
...
Further arguments passed to or from other methods.

Value

  • A phylogenetic tree of class phylo.

See Also

hclust, as.phylo

Examples

Run this code
data(Laurasiatherian)
dm = dist.logDet(Laurasiatherian)
tree = upgma(dm)
plot(tree)

Run the code above in your browser using DataLab