search for: ra940104

Displaying 1 result from an estimated 1 matches for "ra940104".

Did you mean: ra940101
2009 Oct 28
2
read.table but more tables at once
Dear all, I have a lot of data files (.txt) that I want to read in all at once, if possible. the files have names in time system. for example: RA940101, RA940102, RA940103, RA940104 an so on. (meaning: RA, year:91, month: here january, day of the month.) I tried something like vektor <- c("RA940101","RA940102","RA940103") for (x in 1:3) { data <- read.table(paste(vektor[x],sep=""),header=F) } But how can I put the vektor on the...