I am running a 3-way interaction which includes a binary variable (race) and 2 continuous variables (age and dep) covarying on sex, SES, and drug_use. See code below
m1 <- lme(Anx ~ sex + SES + drug_use + race + age + dep + race:age + age:dep + dep:race + age:race:dep,
random = ~1|ID,
data = df, method = "REML", na.action = na.omit)
summary(m1)
intervals(m1, 0.95)
To probe significant interactions, I stratified by race. However, I was told that I didn't have to run separate race stratified analysis to get the race-specific estimates, but that these estimates can be directly derived from the model with interactions. Does anyone have any ideas on how to do this?