Why I get the error "Error in read.table(file = file, header = header, sep = sep, quote = quote, : argument "file" is missing, with no default" when I run this code:
mydir = "E:/Data"
myfiles = list.files(path=mydir, pattern="*.csv", full.names=TRUE)
data_csv = ldply(myfiles, read.csv(header = FALSE, sep = ";")
Furthermore as all of them as the same header How can I only read it once?