選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
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")