Skip to contents

14C Calibration with OxCal

Usage

oxcal_calibrate(names, dates, errors, curve = "IntCal20")

Arguments

names

A character vector specifying the names of the dates (e.g. laboratory codes).

dates

A numeric vector giving the BP dates to be calibrated.

errors

A numeric vector giving the standard deviation of the dates to be calibrated.

curve

A character string specifying the calibration curve to be used.

Value

A list with class OxCalResults (see oxcal_parse()).

See also

Author

N. Frerebeau

Examples

if (FALSE) { # \dontrun{
## Download OxCal
oxcal_configure()

## Calibrate 14C dates
cal <- oxcal_calibrate(
  names = c("X","Y"),
  dates = c(5000, 4500),
  errors = c(45, 35)
)

as.data.frame(cal)
} # }