R/remove_last_label_dates.R

Defines functions remove_last_label_dates

Documented in remove_last_label_dates

#' Title
#'
#' @param formatation
#'
#' @return
#' @export
#'
#' @examples
remove_last_label_dates <- function(formatation = ""){
  function(x){
    x <- format(x, formatation)
    x[length(x)] <- ""
    x
  }
}
SebaStad/ggIBPplot documentation built on Nov. 17, 2020, 9:24 a.m.