我创建了一个glmer模型,其中包含四个类别变量,一个连续变量和一个随机截距。现在,我需要对该模型进行总结,并将其放入我的B.A.中的一个漂亮表中。论文。我尝试使用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")
如何将我的模型放入漂亮的表中?谢谢您的帮助