我试图通过使用lm绘制回归模型的边际效应来在R中创建3向交互图。我正在使用plot_model创建图形。但是,该图仅产生两种颜色,因此我无法区分-1SD和+ 1SD。这是我正在使用的代码:
plot_model(model.01_center, type = "int",
terms = c("L_entorhinal_CBF", "APOE_Status", "L_entorhinal_thickavg"),
mdrt.values = "meansd",
title = "Interaction of Entorhinal CBF and CT by APOE")
这是我的模型:
model.01 = lm(wmlm2 ~ 1 + L_entorhinal_CBF + L_entorhinal_thickavg + APOE_Status
+ Age + DATEDIFF_2
+ Gender + Education
+ L_entorhinal_thickavg*APOE_Status
+ L_entorhinal_CBF*APOE_Status
+ L_entorhinal_CBF*L_entorhinal_thickavg
+ L_entorhinal_CBF*L_entorhinal_thickavg*APOE_Status,
data = data_D1,
na.action = na.exclude)
summary(model.01)
非常感谢您的帮助!