Uncalibrate a Radiocarbon Date
Usage
c14_uncalibrate(object, ...)
# S4 method for class 'numeric'
c14_uncalibrate(object, curves = "intcal20")
# S4 method for class 'CalibratedAges'
c14_uncalibrate(object, n = 10000, rounding = getOption("ananke.round"), ...)Arguments
- object
A
CalibratedAgesobject or anumericvector of calibrated ages (in years BP).- ...
Currently not used.
- curves
A
charactervector specifying the calibration curve to be used. Different curves can be specified.- n
An
integerspecifying the number of random samples.- rounding
A
characterstring specifying the rounding convention. It can be one of "none" (the default, no rounding) or "stuiver". Any unambiguous substring can be given.
See also
Other radiocarbon tools:
F14C,
c14_calibrate(),
c14_combine(),
c14_curve(),
c14_ensemble(),
c14_plot,
c14_sample(),
c14_spd(),
rec_plot
Examples
# \donttest{
## Calibrate multiple dates
cal <- c14_calibrate(
values = c(5000, 4500),
errors = c(45, 35),
names = c("X", "Y")
)
## Uncalibrate
c14_uncalibrate(cal, rounding = "stuiver")
#> mean sd
#> 1 5050 60
#> 2 4500 70
# }