Description Usage Arguments Details Value Author(s) See Also Examples
This function computes the numbers of descendants for each dichotomous branch of a phylogenetic tree.
1 | 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>
1 2 3 4 5 | set.seed(55)
tr <- rtree(15)
tr2 <- 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.