例題:
「表 1 のような観察値が得られた。両群の母代表値に差があるかどうか検定しなさい。」
第 1 群の観察値 | 1.2,1.5,1.8,2.6 |
---|---|
第 2 群の観察値 | 1.3,1.9,2.9,3.1,3.9 |
R による解析:
> wilcox.test(c(1.2,1.5,1.8,2.6), c(1.3,1.9,2.9,3.1,3.9)) Wilcoxon rank sum test data: c(1.2, 1.5, 1.8, 2.6) and c(1.3, 1.9, 2.9, 3.1, 3.9) W = 4, p-value = 0.1905 alternative hypothesis: true mu is not equal to 0