Skip to contents

Object Summaries

Usage

# S4 method for class 'CalibratedAges'
summary(object, ..., digits = NULL, calendar = get_calendar())

Arguments

object

A CalibratedAges object.

...

Currently not used.

digits

An integer (or NULL) used for number formatting (see base::format()).

calendar

An aion::TimeScale object specifying the target calendar (see aion::calendar()). If NULL, rata die are returned.

Value

An object of class table.

See also

Other summary: describe

Author

N. Frerebeau

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