knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 5, fig.height = 5 )
The paleoTS
package contains functions for analyzing paleontological time-series of
trait data. It implements a set of evolutionary models that have been suggested to be important
for this kind of data. These include simple models - those for which evolutionary dynamics do not change over the observed interval:
URW
) and directional/biased versions (GRW
)StrictStasis
) for when there is no real evolutionary changeOU
) processes, which can be used to model microevolutionary adaptation to a local peak on the adaptive landscapecovTrack
), in which changes in a trait follow changes in an external variable (e.g., body size evolves in response to temperature changes)In addition, there are complex models that show heterogeneous evolutionary dynamics:
Models in paleoTS
are fit via maximum-likelihood, using numerical optimization to find the best supported set of parameter values. Functions allow users to fit and compare models, plot data and model fits, and perform additional analyses.
paleoTS
The easiest way to import your own data into paleoTS
is through the read.paleoTS
function, which reads a text file with four columns corresponding to the means, variances, sample sizes, and ages of samples populations (in that order). This function converts the input into an object of class paleoTS
that is the required input for most functions. Alternatively, you can use the function as.paleoTS
to create a paleoTS
object directly within R. See those functions' help pages for options and more information.
Here, we'll generate a time-series by simulation, and then plot it:
library(paleoTS) set.seed(10) # to make example replicatable x <- sim.GRW(ns = 20, ms = 0.5, vs = 0.1) plot(x)
There are simulation functions for all models that can be fit. You can look at x
and see all the components of paleoTS
objects:
print(str(x))
Users will not generally modify any of this directly; rather this information is used and modified by paleoTS
functions. For example, one can use the sub.paleoTS
function to subset paleoTS
objects:
x.sub <- sub.paleoTS(x, ok = 10:15) # select only populations 10 through 15 plot(x, add.label = FALSE) plot(x.sub, add = TRUE, add.label = FALSE, col = "red")
The most common goal for users of paleoTS
will be to fit and compare models. Simple models can be fit using the fitSimple
function:
library(mnormt) # should omit this later w.grw <- fitSimple(x, model = "GRW") print(w.grw$parameters) # look at estimated parameters
The maximum-likelihood parameter estimates are reasonably close to the generating parameters. We can also visualize this model fit by plotting the data with 95% probability intervals for the model:
plot(x, modelFit = w.grw)
In addition to interpreting parameter estimates, we often want to compare the fit of different models to the same data:
w.urw <- fitSimple(x, model = "URW") compareModels(w.grw, w.urw) # convenient table comparing model support
Probably not surprisingly, model support is much higher for the GRW
model than for the URW
model. General random walks allow for directional evolution, whereas unbiased random walks do not.
Next, we'll fit a model with punctuated changes, where the timing of the punctuations is not specified by the user. All possible shift points are tested (subject to the constraint that each segment has at least minb
populations) and the best supported shift point is returned:
w.punc <- fitGpunc(x, ng = 2) # ng is the number of segments (= number of punctuations + 1)
Visually, the fit of the punctuated model is not very compelling,
plot(x, modelFit = w.punc)
and this model fares poorly compared the GRW
model:
compareModels(w.grw, w.urw, w.punc)
Note that compareModels
can take any number of model fits as arguments. Certain models are of general enough interest that paleoTS
has convenience functions for fitting them:
fit3models(x)
This function fits the three most canonical models in the paleo literature: general random walk (direction evolution), unbiased random walk, and stasis.
Hunt et al. (2008) re-analyzed data Bell's (2006) capturing three traits in a highly resolved sequence of fossil sticklebacks from an ancient lake. These observation capture an initially highly armored species invading the lake. The species becomes less armored over time, initially quickly but then at a decelerating rate. The pattern is similar to the expected exponential approach to a new optimum expected when a population climbs a peak in the adaptive landscape via an OU process.
In the code below, we first omit levels with no measurable fossils, and then those before the invasion of the new species, so as to focus on the adaptive trajectory afterwards. Some of the samples have very low N, and so their variances are estimated imprecisely. We use the \code{pool.var} function to replace the variances in these low N samples with the estimated pooled variance (average variance, weighted by sample size).
data(dorsal.spines) ok1 <- dorsal.spines$nn > 0 # levels without measured fossils ok2 <- dorsal.spines$tt > 4.4 # levels before the new species invades ds.sub <- sub.paleoTS(dorsal.spines, ok = ok1 & ok2, reset.time = TRUE) # subsample ds.sub.pool <- pool.var(ds.sub, minN = 5, ret.paleoTS = TRUE) # replace some pooled variance w.ou <- fitSimple(ds.sub.pool, pool = FALSE, model = "OU") plot(ds.sub.pool, modelFit = w.ou)
Joint
versus AD
parameterizationNearly all models can be fit by two different methods or parameterizations, referred in paleoTS
as Joint
or AD
, that reflect different strategies for handling temporal autocorrelation that is predicted by most models of trait evolution. The AD
approach uses differences between adjacent points, which are expected to be independent, with the total log-likelihood being the sum of the individual log-likelihoods of the differences. It is a REML (restricted maximum-likelihood) approach, like phylogenetic independent contrasts. The Joint
method is a full likelihood approach, with calculations based on the joint distribution of all populations in a sample. Under all models considered here, this joint distribution is multivariate normal. The Joint
approach is the default throughout paleoTS
.
The two approaches tend to produce similar parameter estimates and relative model fits under most circumstances. One situation in which the Joint
approach is clearly better is that of a long, noisy trend, as shown here:
set.seed(90) y <- sim.GRW(ns = 40, ms = 0.2, vs = 0.1, vp = 4) # high vp gives broader error bars plot(y) fit3models(y, method = "Joint") # GRW clearly wins fit3models(y, method = "AD") # GRW only barely beats URW
Hunt, G., M. Bell, and M. Travis (2008) Evolution toward a new adaptive optimum: Phenotypic evolution in a fossil stickleback lineage. Evolution 62(3): 700-710.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.