Skip to content
Prev 285893 / 398502 Next

coxme: model simplification using LR-test?

On Feb 20, 2012, at 11:41 AM, Simon Tragust wrote:

            
"it" means .. what exactly?
"no luck" means ... what?
He gave you a perfectly formed function. Were you thinking you had to  
fill in some blanks? Not so. That "..." is a meaningful construct in  
R. It says to take whatever arguments follow and pass them on to the  
next function.  So when you enter this at the console:

  m<-coxme(Surv(day,status) ~ condition*infection +
                             (1|infection/population), data=all)
  formula.coxme<- function(x, ...) x$call$formula
  m1<-update(m, ~.-condition:infection)

.... what happens?