You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 line
246B

  1. as_report_factor <- function(x) {
  2. levels_doc_name <- stringr::str_to_title(c(
  3. paste(c("first", "second", "third", "fourth"), "quarter"),
  4. paste(c("mid year", "year end"), "Semi-Annual")
  5. ))
  6. factor(x, levels_doc_name)
  7. }