Functions for calculating the minimum and maximum ages of a cal vector. This function does not take into account the probability distribution.
Arguments
- x
A cal vector of calendar probability distributions.
- min_pdens
Ignores ages with values less than the given value when calculating the minimum or maximum. Default: 0.
See also
Other functions for summarising calibrated radiocarbon dates:
cal_point()
Examples
x <- c14_calibrate(c(10000, 9000, 8000), rep(10, 3))
cal_age_min(x)
#> # cal BP years <yr[3]>:
#> [1] 11275 9970 8650
#> # Era: Before Present (cal BP): Gregorian years (365.2425 days), counted backwards from 1950
cal_age_max(x)
#> # cal BP years <yr[3]>:
#> [1] 11730 10235 9005
#> # Era: Before Present (cal BP): Gregorian years (365.2425 days), counted backwards from 1950
cal_age_range(x)
#> min max
#> 1 11275 11730
#> 2 9970 10235
#> 3 8650 9005