powered by
Ancestral edge
AncestorEdge(edge, parent, child)
AncestorEdge returns a logical vector identifying whether each edge is the immediate ancestor of the given edge.
AncestorEdge
Number of an edge
Integer vector corresponding to the first column of the edge matrix of a tree of class phylo, i.e. tree[["edge"]][, 1]
phylo
tree[["edge"]][, 1]
Integer vector corresponding to the second column of the edge matrix of a tree of class phylo, i.e. tree[["edge"]][, 2].
tree[["edge"]][, 2]
Other tree navigation: CladeSizes(), DescendantEdges(), EdgeAncestry(), EdgeDistances(), ListAncestors(), MRCA(), MatchEdges(), NDescendants(), NodeDepth(), NodeNumbers(), NodeOrder(), RootNode()
CladeSizes()
DescendantEdges()
EdgeAncestry()
EdgeDistances()
ListAncestors()
MRCA()
MatchEdges()
NDescendants()
NodeDepth()
NodeNumbers()
NodeOrder()
RootNode()
tree <- BalancedTree(6) parent <- tree$edge[, 1] child <- tree$edge[, 2] plot(tree) ape::edgelabels() AncestorEdge(5, parent, child) which(AncestorEdge(5, parent, child))
Run the code above in your browser using DataLab