
This function plots a non-ultrametric tree where the tips are not contemporary together with their dates on the x-axis.
plotTreeTime(phy, tip.dates, show.tip.label = FALSE, y.lim = NULL,
color = TRUE, ...)
an object of class "phylo"
.
a vector of the same length than the number of tips
in phy
(see details).
a logical value; see plot.phylo
.
by default, one fifth of the plot is left below the tree; use this option to change this behaviour.
a logical value specifying whether to use colors for the
lines linking the tips to the time axis. If FALSE
, a grey
scale is used.
other arguments to be passed to plot.phylo
.
NULL
The vector tip.dates
may be numeric or of class
“Date”. In either case, the time axis is set
accordingly. The length of this vector must be equal to the number of
tips of the tree: the dates are matched to the tips numbers. Missing
values are allowed.
# NOT RUN {
dates <- as.Date(.leap.seconds)
tr <- rtree(length(dates))
plotTreeTime(tr, dates)
## handling NA's:
dates[11:26] <- NA
plotTreeTime(tr, dates)
## dates can be on an arbitrary scale, e.g., [-1, 1]:
plotTreeTime(tr, runif(Ntip(tr), -1, 1))
# }
Run the code above in your browser using DataLab