我已经使用 glmmTMB 运行了一组 23 个模型。(我已经将我的模型设置为list
下面的示例代码)
cand.models<-list()
cand.models[[1]]<-glmmTMB(count~depth + slope + SST + (1|individual), family=list(family="truncated_nbinom1", link="log"), data=df)
cand.models[[2]]<-glmmTMB(count~depth + slope + (1|individual), family=list(family="truncated_nbinom1", link="log"), data=df)
我想创建一个汇总表,为包含在cand.models
. 我尝试使用broom::glance()
,它应该创建一个“单行”摘要,其中包括偏差,以及 AIC 和 BIC 等其他内容。
summ.table<-do.call(rbind, lapply(cand.models, broom::glance))
但是,输出不包括模型偏差!(它只包括 sigma、logLik、AIC、BIC 和 df.residual)。有谁知道它为什么不提供偏差(也许是 glmmTMB 特有的问题?)。或者,有没有人有替代解决方案来提取偏差?