Re: [R] Help on reading multiple files in R

2010-10-04 Thread jim holtman
allFilesList <- lapply(list.file(), read.table, ..args..) On Mon, Oct 4, 2010 at 2:10 AM, Arnab Maity wrote: > Hi, >    How can I read multiple files(in a loop like manner) within a single code > of R ? For example, I need to run the same code for different datasets (here > list of companies) a

[R] Help on reading multiple files in R

2010-10-04 Thread Arnab Maity
Hi, How can I read multiple files(in a loop like manner) within a single code of R ? For example, I need to run the same code for different datasets (here list of companies) and since individual files are quite large, appending the files into one file is not a desirable option. Can this be d