Event Date Model

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  out.width = NULL
)
## Install extra packages (if needed):
# install.packages("folio") # datasets

# Load packages
library(kairos)

Definition

Event and accumulation dates are density estimates of the occupation and duration of an archaeological site [@bellanger2006; @bellanger2008; @bellanger2012].

The event date is an estimation of the terminus post-quem of an archaeological assemblage. The accumulation date represents the "chronological profile" of the assemblage. According to @bellanger2012, accumulation date can be interpreted "at best [...] as a formation process reflecting the duration or succession of events on the scale of archaeological time, and at worst, as imprecise dating due to contamination of the context by residual or intrusive material." In other words, accumulation dates estimate occurrence of archaeological events and rhythms of the long term.

Event Date

Event dates are estimated by fitting a Gaussian multiple linear regression model on the factors resulting from a correspondence analysis - somewhat similar to the idea introduced by @poblome2003. This model results from the known dates of a selection of reliable contexts and allows to predict the event dates of the remaining assemblages.

First, a correspondence analysis (CA) is carried out to summarize the information in the count matrix $X$. The correspondence analysis of $X$ provides the coordinates of the $m$ rows along the $q$ factorial components, denoted $f_{ik} ~\forall i \in \left[ 1,m \right], k \in \left[ 1,q \right]$.

Then, assuming that $n$ assemblages are reliably dated by another source, a Gaussian multiple linear regression model is fitted on the factorial components for the $n$ dated assemblages:

$$ t^E_i = \beta_{0} + \sum_{k = 1}^{q} \beta_{k} f_{ik} + \epsilon_i ~\forall i \in [1,n] $$ where $t^E_i$ is the known date point estimate of the $i$th assemblage, $\beta_k$ are the regression coefficients and $\epsilon_i$ are normally, identically and independently distributed random variables, $\epsilon_i \sim \mathcal{N}(0,\sigma^2)$.

These $n$ equations are stacked together and written in matrix notation as

$$ t^E = F \beta + \epsilon $$

where $\epsilon \sim \mathcal{N}{n}(0,\sigma^2 I{n})$, $\beta = \left[ \beta_0 \cdots \beta_q \right]' \in \mathbb{R}^{q+1}$ and

$$ F = \begin{bmatrix} 1 & f_{11} & \cdots & f_{1q} \ 1 & f_{21} & \cdots & f_{2q} \ \vdots & \vdots & \ddots & \vdots \ 1 & f_{n1} & \cdots & f_{nq} \end{bmatrix} $$

Assuming that $F'F$ is nonsingular, the ordinary least squares estimator of the unknown parameter vector $\beta$ is:

$$ \widehat{\beta} = \left( F'F \right)^{-1} F' t^E $$

Finally, for a given vector of CA coordinates $f_i$, the predicted event date of an assemblage $t^E_i$ is:

$$ \widehat{t^E_i} = f_i \hat{\beta} $$

The endpoints of the $100(1 − \alpha)$% associated prediction confidence interval are given as:

$$ \widehat{t^E_i} \pm t_{\alpha/2,n-q-1} \sqrt{\widehat{V}} $$

where $\widehat{V_i}$ is an estimator of the variance of the prediction error: $$ \widehat{V_i} = \widehat{\sigma}^2 \left( f_i^T \left( F'F \right)^{-1} f_i + 1 \right) $$

were $\widehat{\sigma} = \frac{\sum_{i=1}^{n} \left( t_i - \widehat{t^E_i} \right)^2}{n - q - 1}$.

The probability density of an event date $t^E_i$ can be described as a normal distribution:

$$ t^E_i \sim \mathcal{N}(\widehat{t^E_i},\widehat{V_i}) $$

Accumulation Date

As row (assemblages) and columns (types) CA coordinates are linked together through the so-called transition formulae, event dates for each type $t^E_j$ can be predicted following the same procedure as above.

Then, the accumulation date $t^A_i$ is defined as the weighted mean of the event date of the ceramic types found in a given assemblage. The weights are the conditional frequencies of the respective types in the assemblage (akin to the MCD).

The accumulation date is estimated as: $$ \widehat{t^A_i} = \sum_{j = 1}^{p} \widehat{t^E_j} \times \frac{x_{ij}}{x_{i \cdot}} $$

The probability density of an accumulation date $t^A_i$ can be described as a Gaussian mixture:

$$ t^A_i \sim \frac{x_{ij}}{x_{i \cdot}} \mathcal{N}(\widehat{t^E_j},\widehat{V_j}^2) $$

Interestingly, the integral of the accumulation date offers an estimates of the cumulative occurrence of archaeological events, which is close enough to the definition of the tempo plot introduced by @dye2016.

Limitation

Event and accumulation dates estimation relies on the same conditions and assumptions as the matrix seriation problem. @dunnell1970 summarizes these conditions and assumptions as follows.

The homogeneity conditions state that all the groups included in a seriation must:

The mathematical assumptions state that the distribution of any historical or temporal class:

Theses assumptions create a distributional model and ordering is accomplished by arranging the matrix so that the class distributions approximate the required pattern. The resulting order is inferred to be chronological.

Predicted dates have to be interpreted with care: these dates are highly dependent on the range of the known dates and the fit of the regression.

Usage

This package provides an implementation of the chronological modeling method developed by @bellanger2012. This method is slightly modified here and allows the construction of different probability density curves of archaeological assemblage dates (event, activity and tempo).

## Bellanger et al. did not publish the data supporting their demonstration: 
## no replication of their results is possible. 
## Here is an example using the Zuni dataset from Peeples and Schachner 2012
data("zuni", package = "folio")

## Assume that some assemblages are reliably dated (this is NOT a real example)
## The names of the vector entries must match the names of the assemblages
zuni_dates <- c(
  LZ0569 = 1097, LZ0279 = 1119, CS16 = 1328, LZ0066 = 1111,
  LZ0852 = 1216, LZ1209 = 1251, CS144 = 1262, LZ0563 = 1206,
  LZ0329 = 1076, LZ0005Q = 859, LZ0322 = 1109, LZ0067 = 863,
  LZ0578 = 1180, LZ0227 = 1104, LZ0610 = 1074
)

## Model the event and accumulation date for each assemblage
model <- event(zuni, dates = zuni_dates, rank = 10)

## Model summary
## (results are expressed in rata die)
summary(model)

## Extract model coefficients
## (convert results to Gregorian years)
coef(model, calendar = CE())

## Extract residual standard deviation
## (convert results to Gregorian years)
sigma(model, calendar = CE())

## Extract model residuals
## (convert results to Gregorian years)
resid(model, calendar = CE())

## Extract model fitted values
## (convert results to Gregorian years)
fitted(model, calendar = CE())
## Estimate event dates
## (results are expressed in rata die)
eve <- predict_event(model, margin = 1, level = 0.95)
head(eve)
## Activity plot
plot(model, type = "activity", event = TRUE, select = 1:6)
plot(model, type = "activity", event = TRUE, select = "LZ1105")

## Tempo plot
plot(model, type = "tempo", select = "LZ1105")

Resampling methods can be used to check the stability of the resulting model. If jackknife() is used, one type/fabric is removed at a time and all statistics are recalculated. In this way, one can assess whether certain type/fabric has a substantial influence on the date estimate. If bootstrap() is used, a large number of new bootstrap assemblages is created, with the same sample size, by resampling the original assemblage with replacement. Then, examination of the bootstrap statistics makes it possible to pinpoint assemblages that require further investigation.

## Check model variability
## (results are expressed in rata die)
## Warning: this may take a few seconds

## Jackknife fabrics
jack <- jackknife(model)
head(jack)

## Bootstrap of assemblages
boot <- bootstrap(model, n = 30)
head(boot)

References



Try the kairos package in your browser

Any scripts or data that you put into this service are public.

kairos documentation built on Nov. 27, 2023, 5:08 p.m.