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.

24 lines
471B

  1. ---
  2. title:
  3. output:
  4. html_document:
  5. toc: true
  6. toc_float: true
  7. ---
  8. ```{r init, echo = F, message = F, warning = F}
  9. library(tidyverse)
  10. library(knitr)
  11. library(DT)
  12. opts_chunk$set(echo = F,
  13. message = F,
  14. warning = F)
  15. options(DT.options = list(paging = F,
  16. searching = T,
  17. info = F,
  18. dom = "Bfrtip",
  19. buttons = c("copy", "excel")))
  20. ```