Nothing
# SAMPLE 14C
#' @include AllGenerics.R
NULL
#' @export
#' @rdname c14_sample
#' @aliases c14_sample,CalibratedAges-method
setMethod(
f = "c14_sample",
signature = "CalibratedAges",
definition = function(object, n = 100, calendar = get_calendar()) {
apply(
X = object,
MARGIN = 2,
FUN = function(prob, size, x) {
sample(x, size = size, replace = TRUE, prob = prob)
},
x = aion::time(object, calendar = calendar),
size = n
)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.