来自sjplot的plot_model仅在边距效果图中使用2种颜色(3向交互)

时间:2018-07-31 23:00:21

标签: r graph regression interaction sjplot

我试图通过使用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)

Here is a picture of the graph created with the color issue

非常感谢您的帮助!

0 个答案:

没有答案