14C Calibration with OxCal

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

An OxCalOutput object.

See also

Author

N. Frerebeau

Examples

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

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

plot(cal)
}