Skip to contents

r-universe

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

Overview

ananke provides functions for radiocarbon calibration and chronological analysis.

Installation

You can install the released version of ananke from CRAN with:

And the development version from GitHub with:

# install.packages("remotes")
remotes::install_github("tesselle/ananke")

Usage

## Load packages
library(ananke)
## Data from Bosch et al. 2015
data("ksarakil")

## Calibrate multiple dates
cal <- c14_calibrate(
  values = ksarakil$date,
  errors = ksarakil$error,
  names = ksarakil$code,
  curves = "marine13",
  reservoir_offsets = 53,
  reservoir_errors = 43,
  from = 50000, to = 0
)

## Plot
plot(cal)

plot(cal, density = FALSE, level = 0.95, lwd = 5)

Contributing

Please note that the ananke project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.