for example : I have files with the name
 "ma01.dat","ma02.dat","ma03.dat","ma04.dat",I want to read the data in
these files into one data.frame

flnm<-paste("obs",101:114,"_err.dat",sep="")
newdata<-read.table(flnm,skip=2)
data<-(flnm,skip=2)
but the data only contains data from the flnm[1]
I  also tried as below :
for (i in 1:9) {
data<-read.table(flnm[i],skip=2)
}


but i failed how could I modified my script?

is there any advices?
--

        [[alternative HTML version deleted]]

______________________________________________
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