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.

21 lines
351B

  1. library(tidyverse)
  2. # library(broom)
  3. # library(modelr)
  4. # Initialize an empty list to store the results ----
  5. results <- list()
  6. # Load the transformed data ----
  7. readRDS("Data/transformed.rds") -> df
  8. # Specific transformations ----
  9. # Models ----
  10. # Tables ----
  11. # Plots ----
  12. # Save the results object ----
  13. saveRDS(results, file = "Data/results.rds")