date_nodes {Claddis} | R Documentation |
Returns node ages for a time-scaled tree
Description
Given a tree with branch-lengths scaled to time and a value for $root.time
will return a vector of node ages.
Usage
date_nodes(time_tree)
Arguments
time_tree |
A tree (phylo object) with branch lengths representing time and a value for |
Details
Returns a vector of node ages (terminal and internal) labelled by their node number.
Author(s)
Graeme T. Lloyd graemetlloyd@gmail.com
Examples
# Create simple four-taxon tree with edge lengths all
# set to 1 Ma:
time_tree <- ape::read.tree(text = "(A:1,(B:1,(C:1,D:1):1):1);")
# Set root.time as 10 Ma:
time_tree$root.time <- 10
# Get node ages:
date_nodes(time_tree = time_tree)
[Package Claddis version 0.6.3 Index]