Running R Script on a Sequence of Files
I can't believe the two 'solutions' already posted. It's easy:
Me neither.
?list.files
That's what I would use, too. If the OP is on a UNIX platform, run the R-script in a loop in the shell is an alternative. Something like this (bourne shell syntax): for datafile in *.csv ; do Rscript analyze.R $datafile done The R script (analyze.R) can use commandArgs() to read the filename argument. cu Philipp
Dr. Philipp Pagel Lehrstuhl f?r Genomorientierte Bioinformatik Technische Universit?t M?nchen Wissenschaftszentrum Weihenstephan 85350 Freising, Germany http://mips.gsf.de/staff/pagel