Object Summaries
Usage
# S4 method for class 'CalibratedAges'
summary(object, ..., digits = NULL, calendar = get_calendar())Arguments
- object
A
CalibratedAgesobject.- ...
Currently not used.
- digits
An
integer(orNULL) used for number formatting (seebase::format()).- calendar
An
aion::TimeScaleobject specifying the target calendar (seeaion::calendar()). IfNULL, rata die are returned.
Value
An object of class table.
See also
Other summary:
describe
Examples
## Calibrate multiple dates
cal <- c14_calibrate(
values = c(5000, 4500),
errors = c(45, 35),
names = c("X", "Y")
)
## Summary
summary(cal, calendar = CE())
#> X Y
#> 1st Qu.:-3876.000 1st Qu.:-3282.000
#> Median :-3778.000 Median :-3210.000
#> Mean :-3793.208 Mean :-3210.544
#> 3rd Qu.:-3729.000 3rd Qu.:-3144.000