polyBalance | R Documentation |
This function computes the numbers of descendants for each dichotomous branch of a phylogenetic tree.
polyBalance(phy)
phy |
A tree of class ‘phylo’. |
The function extends balance
to allow the balance of a tree
with polytomies to be calculated. When the tree is fully dichotomous, the
result is identical to balance
.
A numeric matrix with two columns and one row for each node of the tree. The columns give the numbers of descendants on each node. Non-dichotomous nodes are reported as 'NA'.
Samuel Brown <s_d_j_brown@hotmail.com>
balance
.
set.seed(55)
tr <- ape::rtree(15)
tr2 <- ape::di2multi(tr, tol=0.02)
polyBalance(tr)
polyBalance(tr2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.