Displaying 1 result from an estimated 1 matches for "path1t".
Did you mean:
path1
2012 Mar 28
4
reading files from two folders
...E, 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?
-...