I need to read data into R, using read_csv()
, starting with list_files()
creating a vector with full names of files, then set a tibble to NULL & loop over the entries in the vector I created using list_files
, each time reading a file and attaching, with bind_rows()
, the resulting tibble to the tibble set to NULL containing the data already read.
How would I do this in R doing it the exact way I described above?