Re: [R] R help: Batch read files based on names in a list

2013-05-15 Thread arun
1:51 PM Subject: [R] R help: Batch read files based on names in a list * I am currently reading in a series of files, applying the same functions to them one at a time, and then merging the resulting data frames e.g.: MyRows - c(RowA, RowB, RowC)File1_DF - read.delim(DirectoryToFiles

[R] R help: Batch read files based on names in a list

2013-05-15 Thread Jonathan Dry
* I am currently reading in a series of files, applying the same functions to them one at a time, and then merging the resulting data frames e.g.: MyRows - c(RowA, RowB, RowC)File1_DF - read.delim(DirectoryToFiles\\File1_Folder\\File1.txt, stringsAsFactors=FALSE, check.names=FALSE)File1_DF

Re: [R] R help: Batch read files based on names in a list

2013-05-15 Thread Enrico Schumann
On Wed, 15 May 2013, Jonathan Dry dry...@gmail.com writes: * I am currently reading in a series of files, applying the same functions to them one at a time, and then merging the resulting data frames e.g.: MyRows - c(RowA, RowB, RowC)File1_DF -