Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I often specify the formula argument to model fitting functions like lm or lme by pasting together the parts I need, as in @DWin's answer to this question: Understanding lm and environment.

In practice this looks like this:

library(nlme)
set.seed(5)
ns <- 5; ni <- 5; N <- ns*ni
d <- data.frame(y=rnorm(N),
                x1=rnorm(N),
                x2=factor(rep(1:ni, each=ns)),
                id=factor(rep(1:ns, ni)))

getm <- function(xs) {
  f <- paste("y ~", paste(xs, collapse="+"))
  lme(as.formula(f), random=~1|id, data=d, method="ML")
}
m1 <- getm("x1")
m2 <- getm(c("x1", "x2"))

However, with lme from the nlme package, comparing two models constructed in the way using anova doesn't work, because anova.lme looks at the saved formula argument to ensure that the models were fit on the same response, and the saved formula argument is simply as.formula(f). The error is:

> anova(m1, m2)
Error in inherits(object, "formula") : object 'f' not found

Here's what the anova command should do (refitting the models so that it works):

> m1 <- lme(y~x1, random=~1|id, data=d, method="ML")
> m2 <- lme(y~x1+x2, random=~1|id, data=d, method="ML")
> anova(m1, m2)
   Model df      AIC      BIC    logLik   Test  L.Ratio p-value
m1     1  4 76.83117 81.70667 -34.41558                        
m2     2  8 72.69195 82.44295 -28.34597 1 vs 2 12.13922  0.0163

Any suggestions?

share|improve this question

2 Answers

up vote 3 down vote accepted

Ben's answer works, but do.call provides the more general solution he wished for.

getm <- function(xs) {
    f <- as.formula(paste("y ~", paste(xs, collapse="+")))
    do.call("lme", args = list(f, random=~1|id, data=d, method="ML"))
}

It works because (by default) the arguments in args = are evaluated before being passed to lme.

share|improve this answer
2  
yes, but ... (and this is not the question the OP asked) ... I'm really most curious about how lme (or some other independent function) should behave so that it can make use of formulas that have been constructed in other (no longer directly accessible) environments – Ben Bolker Oct 6 '11 at 12:24
Sounds like an interesting problem. Could you put it up as a question in its own right, with some code illustrating the situation? – Josh O'Brien Oct 6 '11 at 13:56
yes, although it may take me a while to formulate it well. – Ben Bolker Oct 6 '11 at 16:22
@BenBolker: I want to know the answer to your question too. Any success in formulating it well? – Aaron Oct 31 '11 at 16:55
1  
Using data=as.name("d") instead of data=d will store the call as data=d instead of storing a representation of the data frame; this is useful for both object size and reuse using update. – Aaron Mar 26 '12 at 16:07
show 3 more comments

Here's a hack that seems to work:

getm <- function(xs) {
  f <- paste("y ~", paste(xs, collapse="+"))
  m <- lme(as.formula(f), random=~1|id, data=d, method="ML")
  m$call$fixed <- eval(m$call$fixed)
  m
}

but I don't like it at all. I would very much like to see a more principled answer to this question, because I run into this sort of problem all the time when trying to extend the bbmle package.

share|improve this answer
Maybe the 'real' solution is for lme to check how the formula was passed and make sure it's stored correctly using eval exactly as you've done? – joran Oct 5 '11 at 21:18
maybe, but I'm not sure I know how to do that The Right Way. I don't know the correct incantation (nor even the logic, which is the real problem) to evaluate the formula in the correct environment when it may have been passed down through a chain of several calling functions ... – Ben Bolker Oct 5 '11 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.