I am running a basic Mixed Effect Model with lmer(), in R. Let say I have 2 within-subject conditions. In each condition the subject provides one measure.
lmer(measure ~ condition + (1|subject),
REML = TRUE, data = My_data)
The argument REML is TRUE by default. Yet, in several examples I read, people set it as FALSE.
According to the documentations "logical scalar - Should the estimates be chosen to optimize the REML criterion (as opposed to the log-likelihood)?"
Are there real differences in the estimates of fixed or random effects when I use one method or another. When should REML be TRUE? When should it be FALSE?