0

How does the formula for the lmer function work?

Some examples:

library('lmer')
lmer(Yield~(1|Batch),Dyestuff)
lmer(Yield~(Batch)*(1|rep(c(1,2,3),10)),Dyestuff)
lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy)

On the left of ~ sign is the dependent variable and on the right comes all the independent variables separated by the + sign.

Is there any difference between + and *?

What does 1|Batch mean? Does it have to do with the intercept? With being a random or a fixed effect?

What does Day|Subjects mean?

Sven Hohenstein
  • 6,285
  • 25
  • 30
  • 39
Remi.b
  • 4,572
  • 12
  • 34
  • 64

0 Answers0