I have multiple csv files to read into R and I want to do it in the following way:
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.
set the tibble to NULL before starting the loop, so that it can be added to each tibble that is read wihtin the loop.
I need to do this using this exact method, not a quicker way even if there is one