rawdata <- list.files("./data") dfr <- NULL for (i in rawdata) { dfr[i] <- read.delim(i) }
R-Cookbook.com is a collection of "recipes"--problems, solutions, and working examples--contributed by the R community in order to share code, promote the use of R, and make the learning process more efficient for new users.