I'm trying to make a loop with many files...

> library(dplR)
>
> files <- system("ls *.rwl", intern=TRUE)
>
> files
[1] "cimfasy.rwl" "rocquce.rwl"
> for (i in files) {a <- read.rwl(i,header=0)}
There are 70 series
There are 21 series
> class(a)
[1] "data.frame"


This loop import all the files rwl in a single data.frame ( a ).

Can I import a single files to a single data.frame? like this:

for (i in files) {cimfasy <- read.rwl(i,header=0)}

for (i in files) {rocquce <- read.rwl(i,header=0)}



Thanks in advance,
Alfredo

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to