nodepath | R Documentation |
This function finds paths of nodes in a tree. The nodes can be internal and/or terminal (i.e., tips).
nodepath(phy, from = NULL, to = NULL)
phy |
an object of class |
from , to |
integers giving node or tip numbers. |
By default, this function returns all the paths from the root to each
tip of the tree. If both arguments from
and to
are
specified, the shortest path of nodes linking them is returned.
a list of vectors of integers (by default), or a single vector of integers.
Emmanuel Paradis
getMRCA
tr <- rtree(2)
nodepath(tr)
nodepath(tr, 1, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.