I am trying to wrap my head around the notation for this three-level model.
Level 1: Repeated observations Level 2: Client Level 3: Therapist
I am using a baseline intercept model to calculate intra-class correlation coefficients. In order to partition the variance at both the client and therapist level, I have random effects listed for both.
lme4 code:
mod01 <- lmer(var ~ 1 + (1 | client) + (1 | therapist), data = dat10)
And my notation thus far is:
()time,client,therapist = 00 + client + therapist + client,therapist
But is that error term correct? I'm trying to keep this as simple as possible for my audience by using the combined equation. Any feedback is greatly appreciated.