从emmeans R包的emmGrid中提取元素

时间:2018-01-26 12:31:40

标签: r extract emmeans

我想知道如何从emmean SEemmGrid包中提取emmeansR列。 MWE如下所示。

library(emmeans)
warp.lm <- lm(breaks ~ wool * tension, data = warpbreaks)
Test <- emmeans(warp.lm,  specs = "wool")

Test
wool   emmean       SE df lower.CL upper.CL
 A    31.03704 2.105459 48 26.80373 35.27035
 B    25.25926 2.105459 48 21.02595 29.49257

Results are averaged over the levels of: tension 
Confidence level used: 0.95 

class(Test)
[1] "emmGrid"
attr(,"package")
[1] "emmeans"

1 个答案:

答案 0 :(得分:4)

summary(Test)代替了一个data.frame。

class(summary(Test))
[1] "summary_emm" "data.frame" 

所以可以这样做:

summary(Test)$emmean
[1] 31.03704 25.25926

summary(Test)$SE
[1] 2.105459 2.105459

要实际获取新的子集化data.frame,您需要明确强制类data.frame:

as.data.frame(summary(Test))[c('emmean', 'SE')]
    emmean       SE
1 31.03704 2.105459
2 25.25926 2.105459