Displaying 1 result from an estimated 1 matches for "h0mcitot".
2008 Feb 13
2
Newbie HLM with lme4 questions
...ble
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 the same result.
More generally: Should I be...