I would like to read data from several files into separated data frames. The files are in a different folder than the script. I have used list with filenames.
users_list <- list.files(path = "Data_Eye/Jazz/data/first",
                         pattern = "*.cal", full.names = F)
I tried to use functions map and read_delim but without success. It is important for me to read each file to a different dataframe. It will be the best to have the list of data frames.
 
     
    