Quantiles of a Density Estimate
Usage
# S4 method for class 'CalibratedAges'
quantile(
x,
probs = seq(0, 1, 0.25),
na.rm = FALSE,
...,
calendar = get_calendar()
)
# S4 method for class 'ProxyRecord'
quantile(x, probs = seq(0, 1, 0.25), na.rm = FALSE, ...)Arguments
- x
A
CalibratedAgesobject.- probs
A
numericvector of probabilities with values in \([0,1]\).- na.rm
A
logicalscalar: shouldNAvalues be stripped before the computation proceeds?- ...
Currently not used.
- calendar
An
aion::TimeScaleobject specifying the target calendar (seeaion::calendar()). IfNULL, rata die are returned.
Value
A numeric matrix containing the quantiles.
See also
Other statistics:
interval_credible(),
interval_hdr(),
mean(),
median()
Examples
## Calibrate multiple dates
cal <- c14_calibrate(
values = c(5000, 4500),
errors = c(45, 35),
names = c("X", "Y")
)
## Statistics
quantile(cal)
#> 0% 25% 50% 75% 100%
#> X -4034 -3876 -3778 -3729 -3540
#> Y -4034 -3282 -3210 -3144 -2916
median(cal)
#> X Y
#> -3778 -3210
mean(cal)
#> X Y
#> -3793.208 -3210.544
## Plot
plot(cal, calendar = CE())
## Need to set 'calendar'
abline(v = median(cal, calendar = CE()), lty = 2, col = "blue")
abline(v = mean(cal, calendar = CE()), lty = 2, col = "red")