F 検定の上限臨界値と下限臨界値を見つける方法: var.test(x,y)
私のテキストからの例:
x <- c (1973, 403, 509, 2103, 1153 292, 1916, 1602, 1559, 547, 801, 359)
y <- c (1185, 885, 2955, 815, 2852, 1217, 1762, 2592, 1632)
var.test(x,y, alternative = c("two.sided"), conf.level = 0.95)
F test to compare two variances
data: x and y
F = 0.6908, num df = 11, denom df = 8, p-value = 0.5572
alternative hypothesis: true ratio of variances is not equal to 1
95 percent confidence interval:
0.1628029 2.5311116
sample estimates:
ratio of variances
0.6908397
本によると、臨界値は F < 0.273 および F > 4.30 です。
R は F < 0.1628029 および F > 2.5311116 と言っているようです
これに関するアイデアはありますか?