Skip to content
Prev 314486 / 398503 Next

Read many cvs files

You can read the files into a "list" -- you don't want to create
unique object names for each one.


files <- list.files(..pattern to match files..)
results <- lapply(files, read.table, header = TRUE)
On Wed, Jan 2, 2013 at 10:14 AM, Dominic Roye <dominic.roye at gmail.com> wrote: