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.

25 lines
356B

  1. ---
  2. title:
  3. author:
  4. date:
  5. output:
  6. _document:
  7. ---
  8. ```{r init, echo = F, message = F, warning = F}
  9. library(tidyverse)
  10. library(knitr)
  11. #library(rmarkdown)
  12. #library(pander)
  13. #library(DT)
  14. readRDS("results.rds") %>%
  15. list2env(envir = globalenv())
  16. opts_chunk$set(echo = F,
  17. message = F,
  18. warning = F,
  19. error = F)
  20. ```