#' fm_yyyymm
#'
#' Convert date to yyyymm format
#'
#' @param date a date in format yyyy-mm-dd
#' @param hyphen use a hyphen in format: yyyy-mm
#'
#' @return character in format yyyymm
#'
#' @examples
#' fm_yyyymm("2021-05-01", hyphen = TRUE)
#'
#' @export
#'
fm_yyyymm <- function(date, hyphen = FALSE){
date <- as.Date(date)
stopifnot(lubridate::is.Date(date))
if (hyphen) {
format(date, "%Y-%m")
} else {
format(date, "%Y%m")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.