【发布时间】:2021-05-27 03:21:34
【问题描述】:
我从 glm 模型中得到了我无法理解的结果。在这个模型中,Bond 是一个具有三个水平的因子。三个水平的emmeans 具有较大的标准误差和较宽的置信区间。从这个角度来看,级别之间似乎没有任何显着区别。
但是,当我查看一些成对比较时,标准误差要小 100 倍,并且两个比较(A10 - A15 和 A14 - A15)实际上在 95% 的置信水平上显着。数据或模型是否有任何属性可以解释这一点?
抱歉,我缺乏统计知识并且无法生成可重现的示例,因为数据集有超过 1,000 行。非常感谢。
> emmeans(Model1, "Bond")
Bonder emmean SE df asymp.LCL asymp.UCL
A10 -6.75 21.6 Inf -49.1 35.6
A14 -6.48 21.6 Inf -48.8 35.9
A15 -6.12 21.6 Inf -48.5 36.2
Results are averaged over the levels of: Spin, Type
Results are given on the logit (not the response) scale.
Confidence level used: 0.95
> pairs(emmeans(Model1, "Bond"))
contrast estimate SE df z.ratio p.value
A10 - A14 -0.271 0.2579 Inf -1.049 0.5456
A10 - A15 -0.636 0.2591 Inf -2.453 0.0376
A14 - A15 -0.365 0.0674 Inf -5.416 <.0001
Results are averaged over the levels of: Spin, Type
Results are given on the log odds ratio (not the response) scale.
P value adjustment: tukey method for comparing a family of 3 estimates ```
【问题讨论】: