as_cal() converts objects from other packages that represent calibrated
radiocarbon dates to cal objects.
Methods are currently implemented for:
CalDates: fromrcarbon::calibrate()oxcAARCalibratedDateandoxcAARCalibratedDatesList: fromoxcAAR::oxcalCalibrate()BchronCalibratedDates: fromBchron::BchronCalibrate()
These functions are intended for complex S3 objects from other packages.
See cal() for a more generic constructor, e.g. using a data frame.
Usage
as_cal(x)
# S3 method for class 'CalDates'
as_cal(x)
# S3 method for class 'oxcAARCalibratedDatesList'
as_cal(x)
# S3 method for class 'oxcAARCalibratedDate'
as_cal(x)
# S3 method for class 'BchronCalibratedDates'
as_cal(x)Value
cal object: a data frame with two columns, year and p, representing
the calibrated probability distribution. All other values are stored as
attributes and can be accessed with cal_metadata().
See also
Other functions for working with cal objects:
as.CalDates.cal(),
cal(),
cal_metadata()