Skip to content
Prev 16611 / 20628 Next

What is the appropriate zero-correlation parameter model for factors in lmer?

There is an interpretable alternative to fm5 (actually there are many ...),
called fm8 below, that avoids the redundancy between variance components.
The change is to switch from (1 |g) + (0 + f | g) = (1 | g) + (0 + A + B +
C | g) to 1 | g) + (0 + c1 + c2 |g ), where c1 and c2 are the contrasts
defined for f. (I have actually used such LMMs quite often.) With this
specification the difference to the maxLMM (fm6) is that the correlation
between intercept and contrasts is suppressed to zero. The correlation
parameters now refer to the correlations between effects of c1 and c2, not
to the correlations between A, B, and C.  Actually, this is but one example
of many LMMs one could slot into this position of the hierarchical model
sequences. At this level of model complexity one can suppress various
subsets of correlation parameters (as illustrated in Bates et al. (2015)[1]
and various vignettes of the RePsychLing package).


 fm1 = y ~ 1 + f + (1 | g)                     # minimal LMM version 1
 (min1LMM)
 fm2 = y ~ 1 + f + (1 | f:g)                   # minimal LMM version 2
 (min2LMM)
 fm3 = y ~ 1 + f + (0 + f || g)                # zcpLMM with 0 in RE
(zcpLMM_RE0)
 fm4 = y ~ 1 + f + (1 | g) + (1 | f:g)         # LMM w/ f x g interaction
(intLMM)
 fm5 = y ~ 1 + f + (1 | g) + (0 + f | g)       # N/A
 fm6 = y ~ 1 + f + (1 + f |  g)                # maximal LMM (maxLMM)
 fm7 = y ~ 1 + f + (1 + f || g)                # zcpLMM with 1 in RE
(zcpLMM_RE1)
 fm8 = y ~ 1 + f + (1 | g) + (0 + c1 + c2 | g) # parsimonious LMM (prsmLMM)

Hierarchical model sequences

(1) maxLMM_RE1 -> prsmLMM -> intLMM     -> min1LMM  # fm6 -> fm8 -> fm4 ->
fm1
(2) maxLMM_RE1 -> prsmLMM -> intLMM     -> min2LMM  # fm6 -> fm8 -> fm4 ->
fm2
(3) maxLMM_RE0 -> prsmLMM -> zcpLMM_RE0 -> min2LMM  # fm6 -> fm8 -> fm3 ->
fm2
(4) maxLMM_RE1 -> prsmLMM -> zcpLMM_RE1 -> min1LMM  # fm6 -> fm8 -> fm7 ->
fm1  (new sequence)
```

I will update the RPub in the next days.

[1] https://arxiv.org/pdf/1506.04967.pdf


Best regards,
Reinhold Kliegl

On Tue, May 22, 2018 at 11:00 AM, Maarten Jung <
Maarten.Jung at mailbox.tu-dresden.de> wrote: