I am running the following code over pairs of files like a1.txt and b1.txt, a2.txt and b2.txt, .... a999.txt and b999.txt:
dostuff <- function(x)
{
files <- list.files(pattern=paste('.', x, '\\.txt', sep=''))
a <- read.table(files[1],header=FALSE) #file a1.txt
G <- a$V1-a$V2
b <- read.table(files[2],header=FALSE) #file b1.txt
as.factor(b$V2)
q <- tapply(b$V3,b$V2,Fun=length)
H <- b$V1-b$V2
model <- lm(G~H)
return(model$coefficients[2],q)
}
results <- sapply(0:999,dostuff)
Error in tapply(b$V3, b$V2, FUN = length) : arguments must have same length
This I assume is because both files in a pair have no headers so a has V1 V2 and b has V1 V2 V3.
However this error does not arise when i run this over small batches of files like 0:3 and the results for these come out the same as if i did every analysis separately, clearing the environment between runs of the whole code manually.
I believe the problem arises once files run from a1 b1 to a10 b10 and above. Because the loop i thinks get confused over which files to select. This problem disappears as long as I run with a0 b0 to a9 b9.
Best solutions?