#' @title time_start
#'
#' @description Initializes the starting point of a time measurement.
#'
#' @return Creates a time_started object in the global environment.
#' @examples -
#' @export
time_start <- function(
){
# Create the time start object in the global environment
time_started <- NULL
time_started <<- Sys.time()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.