plot.paleoTS | R Documentation |
Plot a paleoTS object
## S3 method for class 'paleoTS'
plot(
x,
nse = 1,
pool = FALSE,
add = FALSE,
modelFit = NULL,
pch = 21,
pt.bg = "white",
lwd = 1.5,
ylim = NULL,
xlab = NULL,
ylab = NULL,
add.label = TRUE,
...
)
x |
a |
nse |
the number of standard errors represented by the error bars on the plot; defaults to 1 |
pool |
logical indicating if variances should be pooled across samples
for the purposes of displaying error bars; defaults to |
add |
logical, if |
modelFit |
optional model fit from fitting functions |
pch |
plotting symbol, defaults to 19 |
pt.bg |
color fill for points, defaults to white |
lwd |
line width, defaults to 1.5 |
ylim |
optional, y-limits of the plot |
xlab |
optional, label for x-axis |
ylab |
optional, label for y-axis |
add.label |
logical, if |
... |
other arguments passed to plotting functions |
none.
x <- sim.GRW(ns = 30)
w <- fitSimple(x, model = "GRW", method = "Joint")
plot(x, modelFit = w)
plot(x, xlab = "Time [Myr]", ylab = "Body length [mm]", pch = 22, pt.bg = "blue")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.