Displaying 1 result from an estimated 1 matches for "timeyrs".
Did you mean:
timers
2008 Feb 13
2
Newbie HLM with lme4 questions
...models explicitly, and I'm having trouble
understanding what the equivalent of this is in lmer. Most of the
examples we cover in class are change models, i.e., we working with
longitudinal data.
Specific questions:
in HLM 6.0, we build the following model;
Y = P0 + P1*(CONFLICT) + P2*(TIMEYRS) + E
Level-2 Model
P0 = B00 + B01*(H0MCITOT) + R0
P1 = B10 + B11*(H0MCITOT) + R1
P2 = B20 + B21*(H0MCITOT) + R2
Can someone explain to me how to represent this in lmer syntax? I've
tried e.g.,
lmer(MAT ~ 1 + CONFLICT + TIMEYRS + (1 + CONFLICT +
+ TIMEYRS | H0MCITOT))
But I don't get th...