14C Calibration with OxCal
Value
A list with class OxCalResults (see oxcal_parse()).
See also
Other OxCal tools:
oxcal_configure(),
oxcal_execute(),
oxcal_install(),
oxcal_parse()
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)
} # }