多级模型:使用glmmTMB

时间:2018-06-07 06:23:42

标签: r mixed-models confidence-interval

我使用glmmTMB运行了多级模型:

ml.zip <- glmmTMB(y ~ x1*x2*x3 + offset(log(exposure)) + (1 | id),
                  zi = ~ 1,
                  weights = wts,
                  data = df,
                  family = poisson)

现在,我想构建一些自举置信区间。使用lme4开发模型时,可以使用confint函数实现:

confint(ml.zip, method = "boot")

但是,使用glmmTMB构建模型时,同一函数会抛出错误:

> confint(ml.zip1, method = "boot")
Error in match.arg(method) : 
  'arg' should be one of “wald”, “Wald”, “profile”, “uniroot”

有没有办法使用glmmTMB构建自举置信区间?

0 个答案:

没有答案