如何找到 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
关于这个有什么想法吗?