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

02_Tidy.R 285B

1234567891011121314
  1. library(tidyverse)
  2. # library(lubridate)
  3. # library(stringr)
  4. # library(forcats)
  5. # Load the csv data and tidy it ----
  6. read_csv("Data/.csv") %>%
  7. select() %>%
  8. filter() %>%
  9. mutate() %>%
  10. dmap_if(is.character, factor) -> df
  11. # Save the tidy-ed data ----
  12. save(df, file = "tidy.Rdata")