lme4

时间:2018-03-15 14:34:10

标签: r lme4 mixed-models glmulti

我正在尝试比较包含我数据集中所有变量的各种混合效果逻辑(或某些结果伽玛)模型的AIC(或AICc)值,其简化版本可在此处下载:{{3} }。然而,我是glmulti的新手并且只使用lme4一个月左右,所以我相信我做的事情非常错误:

我已经设置了包含所有变量的初始模型,如下所示:

data_reprex <- read_csv("reprex_glmulti_data.csv")


data_reprex <- within(data_reprex, {
  Dog <- factor(Dog) 
  Box <-factor(Box)
  Sex <- factor(Sex)
  Group <- factor(Group)
  Breedtype <- factor(Breedtype)
  OwnerSeverity <- factor(OwnerSeverity, levels = c("None", "Mild", "Moderate", "Severe"))
})


outcome_model <- glmer(SuccessBinary ~ Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity +
                         Group + Group*Interval + Group*Box + Group*Trial + Group*Age + Group*Sex + Group*Breedtype 
                       + (1 | Dog), data = data_reprex, family = binomial, nAGQ=100)

该模型运行正常(除了我已经调查过的一些警告)。但是我想为那些变量的每个组合的模型运行glmulti来识别最佳模型,并根据我在网上找到的各种例子尝试了几种不同形式的语法,但这些都不起作用(我也试过改变标准)和“confsetsize”设置):

attempt1 <- glmulti(SuccessBinary ~ Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity +
         Group + (1 | Dog), data=data_reprex,
       level=1, fitfunction=glmer, family= binomial, crit="aicc", confsetsize=150)

attempt2 <- glmulti(SuccessBinary ~ Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity +
                      Group + (1 | Dog), data=data_reprex,
                    level=1, fitfunction=glmer, crit="aicc", confsetsize=150)


attempt3 <- glmulti(outcome_model, level=2, fitfunction=glmer, crit=AICc)

attempt4 <- glmulti(outcome_model, level=2, crit=AICc)

错误消息包括:

Improper call of glmulti.

Error in .subset2(x, i, exact = exact) : 
  attempt to select less than one element in get1index

我有时会收到警告信息,例如:

 In Ops.factor(Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity,  :
  ‘+’ not meaningful for factors

In Ops.factor(Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity +  : ‘|’ not meaningful for factors

我假设这是一个语法问题,我需要改变代码的结构,因为我使用的是逻辑glmer而不是glm,就像我在网上找到的大多数例子一样,从文档中我相信glmulti应与lme4的型号兼容。请有人可以告诉我如何构建它以便它运行? (另外,是否有一种相对简单的方法只包含与变量“Group”的交互而不是包含所有其他变量?)

编辑:作为最后的尝试,我也试过使用这里提供的建议(虽然我觉得我可能有些困惑):https://drive.google.com/file/d/1YO17J7Dx1cFD0Wf3fNGe-a37ccTKyWNp/view?usp=sharing使用以下代码,但这也不起作用:

glmer2.glmulti <- setMethod('getfit', 'merMod', function(object, ...) {
  summ=summary(object)$coef
  summ1=summ[,1:2]
  if (length(dimnames(summ)[[1]])==1) {
    summ1=matrix(summ1, nr=1, dimnames=list(c("(Intercept)"),c("Estimate","Std. Error")))
  }
  cbind(summ1, df=rep(10000,length(fixef(object))))
})

attempt5 <- glmulti(SuccessBinary ~ Interval + Box + Trial + Age + Sex + Breedtype + OwnerSeverity +
                      Group + (1 | Dog), data=data_reprex,
                    level=1, fitfunction=glmer2.glmulti, family=binomial, crit="aicc", confsetsize=150)

提前致谢!

1 个答案:

答案 0 :(得分:0)

我很困惑,也尝试将glmulti应用于装有glmmTMB的混合效果模型,并且得到了与您非常相似的错误消息。我没有设法使它与glmulti一起使用,但是看来MuMIn软件包here中的函数dredge对我有用。也许您可以尝试一下? (以防您尚未找到解决方案)。