如何用GLMM交互的字母进行成对比较

时间:2017-04-03 19:42:28

标签: plot glm tukey

这是我的模特:

mod6<-glmer(NS.test~0+Beach*method+(1|year)+ (1|Beach/Zone_1/index),data=y2,weights=(y2$FC+y2$Nest),family=binomial)

我进行了多次比较:

    wht <- glht(mod6, linfct = mcp(Beach = "Tukey", method = "Tukey"))

摘要(wht,test = adjust(&#34; Westfall&#34;))

结果:

> wht <- glht(mod6, linfct = mcp(Beach = "Tukey", method = "Tukey"))
Warning messages:
1: In mcp2matrix(model, linfct = linfct) :
  covariate interactions found -- default contrast might be inappropriate
2: In mcp2matrix(model, linfct = linfct) :
  covariate interactions found -- default contrast might be inappropriate
    > summary(wht, test = adjusted("Westfall"))

     Simultaneous Tests for General Linear Hypotheses

Multiple Comparisons of Means: Tukey Contrasts


Fit: glmer(formula = NS.test ~ 0 + Beach * method + (1 | year) + (1 | 
Beach/Zone_1/index), data = y2, family = binomial, weights = (y2$FC + 
y2$Nest))

Linear Hypotheses:
                                   Estimate Std. Error z value Pr(>|z|)    
Beach: HO/HA - Hillsboro == 0       0.28208    0.13787   2.046   0.0408 *  
Beach: P/FTL - Hillsboro == 0       0.45910    0.11874   3.866   <0.001 ***
Beach: P/FTL - HO/HA == 0           0.17703    0.06999   2.529   0.0196 *  
method: HTL only - HTL and SB == 0  0.64003    0.13472   4.751   <0.001 ***
method: no clean - HTL and SB == 0  0.36418    0.08201   4.441   <0.001 ***
method: no clean - HTL only == 0   -0.27585    0.10690  -2.581   0.0196 *  
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Adjusted p values reported -- Westfall method)

这是我发现多重比较工作的唯一方法。如你所见,我有一个错误。 知道这意味着什么吗?

如何使用上面的字母绘制结果?

是否有另一种方式以另一种方式与交互进行多重比较?

0 个答案:

没有答案