dateNodes | R Documentation |
This function returns the ages of nodes (both internal and terminal tips)
for a given phylogeny of class phylo
.
Its use is specialized for application to dated trees from paleotree
,
see Details below.
dateNodes( tree, rootAge = tree$root.time, labelDates = FALSE, tolerance = 0.001 )
tree |
A phylogeny object of class |
rootAge |
The root age of the tree, assumed by default to be equal to the element at
|
labelDates |
If |
tolerance |
The tolerance within which a node date has to be removed from zero-time (i.e. the modern) to issue a warning that there are 'negative' node dates. |
This function is specialized for dated phylogenies, either estimated from empirical data or simulated with functions from
paleotree
, and thus have a $root.time
element. This function will still work without such,
but users should see the details for the rootAge
argument.
Returns a vector of length Ntip(tree) + Nnode(tree)
which contains the dates for
all terminal tip nodes and internal nodes for the tree, in that order,
as numbered in the tree$edge
matrix.
These dates are always on a descending scale (i.e. time before present);
see help for argument rootAge
for how the present time is determined.
If rootAge
is so defined that some nodes may occur later than
time = 0 units before present, this function may (confusingly)
return negative dates and a warning message will be issued.
David W. Bapst, based on a function originally written by Graeme Lloyd.
compareTimescaling
, nodeDates2branchLengths
#let's simulate some example data set.seed(444) record <- simFossilRecord(p = 0.1, q = 0.1, nruns = 1, nTotalTaxa = c(30,40), nExtant = 0) taxa <- fossilRecord2fossilTaxa(record) #get the true time-sclaed tree tree1 <- taxa2phylo(taxa) #now let's try dateNodes dateNodes(tree1) #let's ignore $root.time dateNodes(tree1,rootAge = NULL) #with the lengthy tip-label based labels #some of these will be hideously long dateNodes(tree1,labelDates = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.