#' Convert date and time columns to a combined datetime
#'
#' @param date ymd date column
#' @param time hms time column
#'
#' @value ymd_hms datetime
#'
#' @export
to_date_time <- function(date, time) {
sprintf("%s %s", as.character(date), as.character(time)) %>%
lubridate::ymd_hms(quiet = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.