> I have data in many files in a directory, how can I
> loop through the files in a given dir in-order-to
> build a data.frame? 

Just use something like 'x <- dir(YOUR_ARGS_HERE)', and then you can do a
loop like:

for (i in x) {
  do something
  do something else
  etc ...
}

-J

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to