#' Parse a date-time vector
#' @param x vector of date-times
ss_parse_datetime <- function(x) {
x <- as.POSIXct(strptime(x, "%Y-%m-%dT%H:%M:%OS"), tz = "US/Pacific")
lubridate::with_tz(x, tzone = Sys.timezone())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.