Created
February 9, 2019 22:09
-
-
Save azadag/487d62993e0e0f931ad73352d73cd939 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(v) | |
data_dir %>% | |
dir_ls(regexp = "\\.csv$") %>% | |
map_dfr(read_csv, .id = "source") %>% | |
mutate(Month_Year = myd(Month_Year, truncated = 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment