Notes on Analysing Experiments in R

From enfascination

Jump to: navigation, search

NOTE: I wrote this in 2010 and touched it up recently in 2012. I can use bootstrapping now, but I still prefer to use the very simple "anova(mymodel, mymodelminusoneparameter)." There is one especially exciting approach, completely different, still very technical, that I'm not at all facile with, called Bayesian analysis.


I've been inferring my knowledge of statistical analysis from the more and less patient attacks that Douglas Bates unleashes on non-statisticians who need p-values in the language R. Douglas Bates is the author of R's mixed effects package, which lets you do tricky things. It turns out that, for complex enough designs, experimentalists are at the cutting edge of statistics, and a lot isn't known. Specifically, this article may be relevant to you if you use random effects (e.g. continuous-ish covariates), or nested experimental designs (e.g. involving phrases like "within subject" and "repeated measure"), a mix of ordinal/categorical and continuous variables and other non-vanilla flavors of analysis of variance.

It gets religious because the professionals are only too aware of the meaninglessness of p-value's, which most practitioners function to swear by. The practitioners want R's mixed-effects to give p-values, and they are bolstered by the fact that SAS gives just those numbers (apparently SAS mixed-effect implementations give p-values). In the most well-known email, Bates show obvious emotional restraint explaining why it is not sensible to expect p-values generally from mixed effect models. He also offers model constraints under which a p-value can be a meaningful statistic.

But there still isn't enough information available for people who aren't already experts. (The "Documentation" section, below, gives all the information you need if you do already know enough to know the right way to do it). I'm trying to collect the useful things I've learned into one spot, mostly for my own sake.

Contents

Good conversations on the threads

Documentation

Most of these references are only everything-you-need if you already know what you are doing (two years after writing this I still don't follow everything). Otherwise you will have to supplement them with Wikipedia and the other things I've found. They are still worth reading. Osmosis is a general enough phenomenon that it works on even really inscrutable subjects, even when you have no idea what is going on. You just have to stay awake. My problem is staying awake.

Good conversation snippets from the threads

  • There is now an anova() method for lmer() and lmer2() fits performed using method="ML". You can compare different models and get p-values for p-value obsessed journals using this approach. [3]
  • This is Bate's answer to people who already know the answer: """With lmer fits I recommend checking a Markov chain Monte Carlo sample from the posterior distribtuion of the parameters to determine which are signification (although this is not terribly well documented at the present time).""" [4]
  • Similarly """Try using mcmcsamp() to sample from the posterior distribution of the parameter estimates. You can calculate a p-value from that, if that is your desire.""" [5]
  • More for people who already know the answer: [6]
  • Here is what I've been doing (snippet below. limit: only really works with infinite data): """My general advice to those who are required to produce a p-value for a particular fixed-effects term in a mixed-effects model is to use a likelihood ratio test. Fit the model including that term using maximum likelihood (i.e. REML = FALSE), fit it again without the term and compare the results using anova. The likelihood ratio statistic will be compared to a chi-squared distribution to get a p-value and this process is somewhat suspect when the degrees of freedom would be small. However, so many other things could be going wrong when you are fitting complex models to few observations that this may be the least of your worries."""[7]

Code snippets

  • Keep in mind that I'm just a dilettante. I've used these, but that doesn't imply that they are appropriate, or correct:
### for two lmer fits lmerout.basic and lmerout.null
### only use this on models that differ by one fixed effect.  the smaller (or closer to null) model should 
###  be the second one.  If your goal is to find significant variables in the system, your procedure is 
###  to start at null model or one with only the controlled variables and incrementally add in 
###  dependent/invented explanatory variables .
test.lm<- function(lmerout1, lmerout2) { pchisq(as.numeric(2*(logLik(lmerout1)-logLik(lmerout2)), lower=FALSE))}
test.lm(lmout.basic, lmout.null)

### alternatively (and probably preferable) (and, still, preferable with only one variable difference at a time)
anova(lmerout.basic, lmerout.null)

Appendix if the starting point of this discussion is too advanced

  • All the way back: R is a programming language for statistical analysis. It is free in both the bird and lunch senses. It is almost identical to a very expensive program called S. It is also very good, and in some ways it may have eclipsed S.
  • Less far back: A t-test is a very simple test, taken on sample from two big lists of numbers, of whether those two lists are not really different. Comparing samples gets way more complicated. Analysis of variance (ANOVA) is a step on the way, and is the most popular manifestation of The Linear Model. Besides coursework, the best way that I know to get from knowing nothing to understanding this post is at sportsci.org . It has the most thorough free resource that I've found for explaining it all to dummies [8]. I read the whole thing. (Note: this was in 2010, whatever that implies).
  • In R, aov() works most of the time. If not, lm() should work. If not, things get tangled and the learning curve gets worse. There is glm(), lme(), nlme(), and lmer() (of which glmer(), nlmer() and lmer2() are variants), all used with anova() or glht() or MCMC/bootstrapping techniques involving pvals.func(), merMCMC-class(), mcmcsamp() or your own code. Relevant libraries (or packages, whatever) are nlme, lme4, languageR, RLRsim, and multcomp. This page refers mostly to the use of lmer() in the package lme4 linked in the documentation section.
  • Hypothesis testing gets hard after lm(). You can't just type
    summary(yourlm)
    like with lm(). You have to either sample simulated data from the statistical model you fit, and infer test statistics from the simulation (bootstrapping) or calculate the log likelihood ratio of your model against a null model.* You do this by writing your own test, using the one above, or just typing
    anova(yourlm, yourotherlm)
    . Any of these could not-work, depending on the complexity of the model.

* Ideally one that is the same-but-for-one-factor (Opaquely, the distribution of the log of the square of the ratio of two models is approximately chi-square, and I think it errs conservative. Sameness-but-for-one makes df=1 which is the easiest to interpret in this context).