我创建了一个 glmer 模型,其中包含四个分类变量、一个连续变量和一个随机截距。现在我需要对这个模型进行总结,并将其放在我的 BA 论文中的一个漂亮的表格中。我尝试使用 sjPlot 包中的 tab_model() 函数,但是收到一个我不理解的错误
Error in UseMethod("family") : no applicable method for 'family' applied to an object of class "logical"
我使用的论点如下:
tab_model(model,
emph.p = TRUE,
exp.coef = FALSE,
separate.ci.col = TRUE,
show.header = TRUE,
show.aic = TRUE,
string.p = "p-value",
cell.spacing = 0.1,
sep.column = FALSE,
file = "model_summary_table.html")
我怎样才能把我的模型放到一个漂亮的、像样的桌子上?感谢您的任何帮助