#' time_format
#'
#' An easy function for switching an amount of seconds into a time string
#' @param df A data frame
#' @export
time_format <- function(x) {
y <- paste(x %/% 60, x %% 60, sep = ":")
return(y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.