sjPlot-plot_model()更改点的颜色和线条[R]

时间:2019-08-07 15:46:44

标签: r ggplot2 plot sjplot

我有一个lmer模型,想用点数据绘制效果趋势图,但是函数plot_model()尽管擅长绘制我想要的内容,但在定制方面似乎非常不灵活。

我要更改以下绘图中点的颜色和alpha:

model1<-lmer(NDVI~ fall_ai+spring_ai+SI+(1|colony),data=clm,REML=T)
plot_model(model1, type = "pred", show.data = T)

enter image description here 以及将CI线从alpha颜色更改为虚线,如下例所示:

enter image description here 我该怎么做?

1 个答案:

答案 0 :(得分:0)

一种解决方法可以使用格来实现:

plot(Effect(c("fall_ai"),model1),
     colors="black",lwd=1.5,ylab="Spring NDVI",xlab="Autumn Aridity Index",
     ci.style="lines",main="",ylim=c(0.20,0.55),xlim=c(0,45))

trellis.focus("panel", 1, 1, highlight = FALSE)
print(panel.points(clm$fall_ai,pch = 16, cex = 0.7, col = "black"))
trellis.unfocus()