plot.paleoTS {paleoTS} | R Documentation |
Plots paleontological time series, showing trait means (with error bars) over time.
plot.paleoTS(x, nse = 1, yl = NULL, pch = 19, true.means = FALSE, start.time = NULL, add = FALSE, ...)
x |
a paleoTS object |
nse |
width of error bars, in standard errors |
yl |
range of trait values to plot |
pch |
plotting character |
true.means |
logical indicating if true means (from simulated data) should also be plotted |
start.time |
Value indicating the absolute age of the oldest sample |
add |
logical, if TRUE data are added to existing plot |
... |
other arguments sent to plot |
True means are only available when the data are simulated. If plotted, they are indicated by a dashed blue line.
No values are returned, the results are plotted.
Gene Hunt
Hunt, G. 2007. Fitting and comparing models of phyletic evolution: random walks and beyond. Paleobiology, in press.
y <- sim.rw(20, 0, 1) plot(y, nse=2, true.means=TRUE, start.time=100)