我可以使用哪个 R 包来可视化混合效应模型系数
我正在使用 R 中的 lmer 函数研究混合效应模型。我的响应变量是生产力,它是连续变量,我尝试找到 5 个预测变量对生产力的影响(SR、NRI、CWM_H 和 CWM_Chl 和 FDispersion),所有预测变量都是继续变量。我想使用系数图可视化模型结果,就像您在图像上看到的那样。 (对正向和负向预测变量使用不同的颜色)。对2017年和2018年从32个图块中收集的数据(从32个图块中采样)进行重复测量,因此我在图中将上述四个预测变量用作固定效应,将图块用作随机效应模型。我应该使用哪个包来可视化系数?任何帮助将不胜感激!
我用过的公式
mixed_model<- lmer(Productivity_log ~ SpR + NRI + CWM_Height + CWM_Chlorophyl +
FDispersion + (1 | Plot), Data= datsc,REML=TRUE)
<img src="http://example.com/img.jpg">
<img src="http://file:///C:/Users/Gossaye/Desktop/CWM/png.jpg">
I am working on mixed effect model using lmer function in R. My response variable is Productivity which is continues variable and I try to find the effect of 5 predictors on productivity(SR, NRI, CWM_H, and CWM_Chl and FDispersion) all the predictors are continues variables. I want to visualize the model result using coefficient plot in the same way as you can see on the image. (using different colors for positive and negative predictors).The data collected in 2017 and 2018 from 32 plots (sampled from 32 plots) repeated measure, so that I used the four predictors mentioned above as fixed effect and the plot as random effect in the model. Which package I should use to visualize the coefficient? Any help would be greatly appreciated!
Formula I have used
mixed_model<- lmer(Productivity_log ~ SpR + NRI + CWM_Height + CWM_Chlorophyl +
FDispersion + (1 | Plot), Data= datsc,REML=TRUE)
<img src="http://example.com/img.jpg">
<img src="http://file:///C:/Users/Gossaye/Desktop/CWM/png.jpg">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sjPlot::plot_model()
正是这样做的。一个快速演示:sjPlot::plot_model()
does exactly this. A quick demo: