[R] reading files from two folders
uday
uday_143_4u at hotmail.com
Wed Mar 28 08:48:15 CEST 2012
I would like to read data from two different folder and then combine this
together
the code which I have tried are as follows
setwd("/Groups/data_first/")
file_was <- list.files(path = ".", pattern = "v2.0.2.was", all.files =
FALSE, full.names = FALSE, recursive = FALSE, ignore.case = FALSE)
path<-c("/Groups/data_second/")
file_wasaux2 <-list.files(path,pattern="v2.0.2.wasaux2")
files<- 1
for ( i in files){
data1 <- read.table(file_was[i],header=TRUE)
data2 <- read.table(paste(path1t, file_wasaux2[i],header=TRUE))
data <- cbind (data1,data2)
}
but I get error
(Error in read.table(SCI_WFMD_L2_w6002_200301_v2.0.2.wasaux2, header = TRUE)
:
object 'SCI_WFMD_L2_w6002_200301_v2.0.2.wasaux2' not found)
could somebody please tell me how to solve this problem?
--
View this message in context: http://r.789695.n4.nabble.com/reading-files-from-two-folders-tp4511493p4511493.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list