Nothing
#' Collect the IDs of the list of clock models
#' @inheritParams default_params_doc
#' @return IDs of the clock models
#' @author Richèl J.C. Bilderbeek
#' @export
get_clock_models_ids <- function(
clock_models
) {
check_true(are_clock_models(clock_models))
n <- length(clock_models)
ids <- rep(NA, n)
for (i in seq_along(clock_models)) {
ids[i] <- clock_models[[i]]$id
}
ids
}
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.