Skip to content
Prev 18768 / 20628 Next

Dropping correlations bet. random-effects in lme4 syntax

Please keep the list in CC.

I would strongly advise against statistical testing of the correlation
parameters. You can technically do a likelihood ratio test comparing
models fit with | and with ||, because the zero-correlation models are a
special case of the unrestricted-correlation model, but DO NOT DO THIS.
The estimates of the correlation parameters are notoriously unstable: we
typically don't have nearly enough data to estimate them (because you
need both a large number of observations AND a large number of groups).

Moreover, the correlation estimates are intertwined with the estimates
of the variance parameters. The sampling distribution for the variance
parameters often looks a lot like a mixture of a point-mass at zero and
some other, bounded distribution. This results in the sampling
distribution of the correlation parameter also  having a point mass at
?1. We have an example of this in the MixedModels.jl docs
(https://juliastats.org/MixedModels.jl/dev/bootstrap/); there is
probably an lme4 equivalent somewhere on the internet.

For a more practical take on what happens when leave out the correlation
parameters, see e.g. this blog post by John Kruschke

https://doingbayesiandataanalysis.blogspot.com/2019/07/shrinkage-in-hierarchical-models-random.html

or this take on dropping correlations to simplify model structure but
still do good inference by Reinhold Kliegl

https://rpubs.com/Reinhold/22193

Phillip
On 4/10/20 9:33 am, Simon Harmel wrote: