Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

36 строки
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. ```