merging files

merging several files into a data.frame (the simplest way)

No votes yet

rawdata <- list.files("./data")
dfr <- NULL
for (i in rawdata) {
dfr[i] <- read.delim(i)
}

Syndicate content