Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- library(tidyverse)
- # library(broom)
- # library(modelr)
-
- # Initialize an empty list to store the results ----
- results <- list()
-
- # Load the transformed data ----
- readRDS("Data/transformed.rds") -> df
-
- # Specific transformations ----
-
- # Models ----
-
- # Tables ----
-
- # Plots ----
-
- # Save the results object ----
- saveRDS(results, file = "Data/results.rds")
|