Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

As the general consensus seems to be to use mixed-models via lmer() in R instead of classical ANOVA (for the often cited reasons, like unbalanced designs, crossed random effects etc.), I would like to give it a try with my data. However I am worried that I would be able to "sell" this approach to my supervisor (who is expecting classical analysis with a p-value in the end) or later to the reviewers.

Could you recommend some nice examples of published articles that used mixed-models or lmer() for different designs like repeated-measures or multiple within- and between-subject designs for the field biology, psychology, medicine?

share|improve this question
Also it would be nice to have some pointers to according references that are considered crucial to cite – jokel Apr 20 '12 at 21:56
1  
On the lme4 project page, there is a collection of articles and other research using nlme or lme4. – chl Jul 4 '12 at 18:23

4 Answers

up vote 15 down vote accepted

I do not have a number of examples, only one (see below), but know some paper you should cite from Psychology/Cognitive Sciences. The most important one is definitely:

Baayen, R. H., Davidson, D. J., & Bates, D. M. (2008). Mixed-effects modeling with crossed random effects for subjects and items. Journal of Memory and Language, 59(4), 390–412. doi:10.1016/j.jml.2007.12.005

Another one from Baayen is:

Baayen, R. H., & Milin, P. (2010). Analyzing Reaction Times. International Journal of Psychological Research, 3(2), 12–28.

I actually totally liked his book, too, which also has a nice introductory chapter on mixed model (and is pretty cheap for a stats book): Baayen, R. H. (2008). Analyzing linguistic data : a practical introduction to statistics using R. Cambridge, UK; New York: Cambridge University Press.

I probably guess he also has a lot of papers using lme4, but as my main interest is not psycholinguistics, you might wanna check his homepage.

From my field (reasoning), I know of this one paper that uses lme4:

Fugard, A. J. B., Pfeifer, N., Mayerhofer, B., & Kleiter, G. D. (2011). How people interpret conditionals: Shifts toward the conditional event. Journal of Experimental Psychology: Learning, Memory, and Cognition, 37(3), 635–648. doi:10.1037/a0022329

(although I have the feeling they use a likelihood ratio test to compare models which only differ in the fixed parameters, which I have heard is not the correct way. I think you should use AIC instead.)


UPDATE1: Another paper describing lme4

Kliegl, R., Wei, P., Dambacher, M., Yan, M., & Zhou, X. (2011). Experimental effects and individual differences in linear mixed models: estimating the relationship between spatial, object, and attraction effects in visual attention. Frontiers in Quantitative Psychology and Measurement, 1, 238. doi:10.3389/fpsyg.2010.00238


Update 2 (July, 2012): A paper advocating the use in (Social) Psychology when there are crossed (e.g., participants and items) random effects.
The big thing is: It shows how to obtain p-values using the pbkrtest package:

Judd, C. M., Westfall, J., & Kenny, D. A. (2012). Treating stimuli as a random factor in social psychology: A new and comprehensive solution to a pervasive but largely ignored problem. Journal of Personality and Social Psychology, 103(1), 54–69. doi:10.1037/a0028347
(only available as a Word .doc)

Jake Westfall told me (per mail) that an alternative for obtaining p-values to the advocated Kenward-Rogers approximation (used in pbkrtest) is the (less optimal) Satterthwaite approximation, which can be found in the MixMod package using the anovaTab function.

Small update to last update: My R package afex contains function mixed() to conveniently obtain p-values for all effects in a mixed model. Alternatively, the car package now also obtains p-values for mixed models in Anova() using test.statistic = "F"

share|improve this answer
Great answer! THanks a lot for the helpful hints! – jokel Apr 21 '12 at 14:54
1  
Draft of Analyzing linguistic data : a practical introduction to statistics using R is available here. – MYaseen208 Apr 21 '12 at 17:15
I also had the pdf, but as the book was really cheap I bought it and am really happy. It is kind of easier to read if you have it as a book. – Henrik Apr 21 '12 at 18:41
@Henrik you say LRTs should not be used to compare models that differ only in fixed effects, do you have a reference for this? – Matt May 6 '12 at 4:58
@Matt I have this information from a discussion with Mike Lawrence from the ez package: groups.google.com/forum/#!topic/ez4r/GQTEtNziRwE Mike cites Pinheiro & Bates (2000) for it, see the link. – Henrik May 7 '12 at 11:23

This is a highly-cited paper on mixed models for ecology and evolution:

share|improve this answer

The following article endeavours to promote the use of multilevel modelling in social science settings:

  • Bliese, P. D. & Ployhart, R. E. (2002). Growth Modeling Using Random Coefficient Models: Model Building, Testing, and Illustrations, Organizational Research Methods, Vol. 5 No. 4, October 2002 362-387. PDF

To quote the abstract:

In this article, the authors illustrate how random coefficient modeling can be used to develop growth models for the analysis of longitudinal data. In contrast to previous discussions of random coefficient models, this article provides step-by-step guidance using a model comparison framework. By approaching the modeling this way, the authors are able to build off a regression foundation and progressively estimate and evaluate more complex models. In the model comparison framework, the article illustrates the value of using likelihood tests to contrast alternative models (rather than the typical reliance on tests of significance involving individual parameters), and it provides code in the open-source language R to allow readers to replicate the results. The article concludes with practical guidelines for estimating growth models.

An examination of the articles listed on Google Scholar as citing this paper suggest several other useful leads.

share|improve this answer
This paper looks really interesting. Unfortunately it only uses lme from nlme instead of lmer from lme4. (+1) – Henrik Apr 23 '12 at 14:04

An excellent example of using mixed models in ecology is:

Unfortunately it uses older R libraries.

share|improve this answer

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.