Answers:
该agricolae::HSD.test
函数正是这样做的,但是您需要让它知道您对交互作用术语感兴趣。这是一个Stata数据集的示例:
library(foreign)
yield <- read.dta("http://www.stata-press.com/data/r12/yield.dta")
tx <- with(yield, interaction(fertilizer, irrigation))
amod <- aov(yield ~ tx, data=yield)
library(agricolae)
HSD.test(amod, "tx", group=TRUE)
结果如下所示:
Groups, Treatments and means
a 2.1 51.17547
ab 4.1 50.7529
abc 3.1 47.36229
bcd 1.1 45.81229
cd 5.1 44.55313
de 4.0 41.81757
ef 2.0 38.79482
ef 1.0 36.91257
f 3.0 36.34383
f 5.0 35.69507
它们与我们将通过以下命令获得的内容相匹配:
. webuse yield
. regress yield fertilizer##irrigation
. pwcompare fertilizer#irrigation, group mcompare(tukey)
-------------------------------------------------------
| Tukey
| Margin Std. Err. Groups
----------------------+--------------------------------
fertilizer#irrigation |
1 0 | 36.91257 1.116571 AB
1 1 | 45.81229 1.116571 CDE
2 0 | 38.79482 1.116571 AB
2 1 | 51.17547 1.116571 F
3 0 | 36.34383 1.116571 A
3 1 | 47.36229 1.116571 DEF
4 0 | 41.81757 1.116571 BC
4 1 | 50.7529 1.116571 EF
5 0 | 35.69507 1.116571 A
5 1 | 44.55313 1.116571 CD
-------------------------------------------------------
Note: Margins sharing a letter in the group label are
not significantly different at the 5% level.
该multcomp包还提供了可视化的象征(“紧凑信显示”,看到算法契约书显示:比较与评价有详细介绍)显著两两比较的,虽然它不以表格的形式呈现出来。但是,它具有一种绘制方法,可以使用盒形图方便地显示结果。演示顺序也可以更改(选项decreasing=
),并且它具有更多的选项可用于多个比较。还有一个multcompView软件包,扩展了这些功能。
这是使用进行分析的相同示例glht
:
library(multcomp)
tuk <- glht(amod, linfct = mcp(tx = "Tukey"))
summary(tuk) # standard display
tuk.cld <- cld(tuk) # letter-based display
opar <- par(mai=c(1,1,1.5,1))
plot(tuk.cld)
par(opar)
共享同一字母的处理在所选级别(默认值为5%)上没有显着差异。
顺便说一句,目前有一个新项目托管在R-Forge上,该项目看起来很有希望:factorplot。它包括基于行和字母的显示,以及所有成对比较的矩阵概览(通过电平图)。可以在这里找到工作文件:factorplot:改进GLM中简单对比度的表示
insert_absorb()
尝试提取一对处理方法的。您也许可以尝试更改用于对交互项进行编码的分隔符?没有有效的示例,很难说出发生了什么。
console=TRUE
的HSD.test()
,以获得表格,万一有人尝试这一点,并认为没有结果。可能是的更新agricolae
。
TukeyHSD
根据帮助文件,有一个函数被称为,该函数针对具有指定覆盖范围的因素的因子水平的均值之间的差异计算一组置信区间。间隔基于学生化范围统计量(Tukey的“诚实显着性差异”方法)。这是您想要的吗?
http://stat.ethz.ch/R-manual/R-patched/library/stats/html/TukeyHSD.html