您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
285B

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