How to get coefficients and their confidence intervals in mixed effects models?

前端 未结 6 942
無奈伤痛
無奈伤痛 2020-12-04 10:52

In lm and glm models, I use functions coef and confint to achieve the goal:

m = lm(resp ~ 0 + var1 + var1         


        
6条回答
  •  孤城傲影
    2020-12-04 11:15

    I'd suggest tab_model() function from sjPlot package as alternative. Clean and readable output ready for markdown. Reference here and examples here.

    For those more visually inclined plot_model() from the same package might come handy too.

    Alternative solution is via parameters package using model_parameters() function.

提交回复
热议问题