challenge_10
Purrr
Author

Daniel Manning

Published

January 30, 2023

Code
library(tidyverse)

knitr::opts_chunk$set(echo = TRUE, warning=FALSE, message=FALSE)

Read in multiple csv files with specified string in name

Code
snl_datasets <-
  list.files(path = "~/Desktop/601_Winter_2022-2023/posts/_data", pattern = "snl") %>% 
  map_df(~read_csv(.))