I am uploading multiple files containing the same type of information but different values. Then I create a list to manage the data easier with:
filenames <- list.files(path = "D:/Paths",
pattern = "path-+.*txt")
paths <- lapply(filenames, function(x) read.delim(x, header=F))
But the name of the paths
disappear once I execute the second command, any suggestion to keep the name for each dataframe inside the list()?