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.

36 lines
512B

  1. ```{r libs}
  2. library(tidyverse)
  3. # library(broom)
  4. # library(modelr)
  5. ```
  6. # Analyse
  7. Initialize an empty list to store the results
  8. ```{r init list}
  9. results <- list()
  10. ```
  11. The transformed data is imported into the global environment.
  12. ```{r import}
  13. readRDS("Data/transformed.rds") %>%
  14. list2env(envir = globalenv())
  15. ```
  16. # Specific transformations
  17. # Models
  18. # Tables
  19. # Plots
  20. The result from the analyses is saved in an object to produce the report
  21. ```{r export}
  22. results %>%
  23. saveRDS(file = "results.rds")
  24. ```