I'm a novice at this, so I can't determine if this is folly or not. Basically, I want to do pairwise mixed effects models between all continuous variables in a huge dataset. The obvious alternative is a simple spearman correlation, but I have my reasons and it would take too long to explain why I want to use mixed effects models.
Data looks something like this:
0 X1507.07 XAB1524.33 XAB1624.21 XAB1808.09...(~4000 columns)
1 12 19 12 45
2 15 35 2 25
3 22 23 65 33
4 0 55 23 67
5 12 10 90 94
6 34 22 11 2
...
90 13 8 14 45
The goal is pairwise models for all columns.
Here's the problematic part of the script:
for(i in 1:ncol(dat))
{
ni<-names(dat)[i]
pvalue <- apply(dat, 2, function(x)
{
formula<-as.formula(paste(ni,"~", x," + Location",sep=""))
model<-do.call("lme", args = list(formula, random=~1|Subject, data=dat))
summary(model)$tTable[2,5]
})
Error:
invalid model formula in ExtractVars
For those confused: I use as.formula because if you try:
model<-lme(X1507.07~x+Region,random=~1|Subject, data=dat)
Error:
Error in eval(expr, envir, enclos) : object 'x' not found
('Location' and 'Subject' are factors in the data frame dat). I only care about the one p value (I know its controversial with mixed effects). I've tried passing x as.matrix(x) and colnames(x) in the as.formula() but nothing really seems to work. Point is: Does anyone know if this is even possible? If I have to loop through it ~10^7 times, its not worth the time (years), so apply() is the only reasonable alternative I can think of.
applywon't be much faster than looping.lmer(fromlme4) might be faster; you can get the t-statistics and translate them to p-values yourself using whatever degrees of freedom you like (including the value that lme would have guessed). How big is your data set (rows*columns)? Can you please give a small reproducible ( tinyurl.com/reproducible-000 ) example? (PS: it does sound a little bit like folly ... can you give an abbreviated explanation of why you prefer mixed models to correlations? Have you considered stats.stackexchange.com ?) – Ben Bolker May 3 '12 at 20:49