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.

12 lines
250B

  1. library(tidyverse)
  2. # library(lubridate)
  3. # Load the csv data and tidy it ----
  4. read_csv("Data/.csv") %>%
  5. select() %>%
  6. filter() %>%
  7. mutate() %>%
  8. mutate_if(is.character, factor) %>%
  9. # Save the tidy-ed data ----
  10. saveRDS(file = "Data/tidy.rds")