당신은 F-test for equality of two variances.
당신은 언어를 지정하지 않음 (프로그램이 없다면,이 질문은 CrossValidated에 더 적합 할 것이다) 그러나 R에 보이는 고려해야 같은 :
#make some dummy data
d <- data.frame(subj_id = c(1:1000,1:1000),
cond = c(rep("Control",1000),rep("Exposed",1000)),
resp = c(rnorm(1000,10,1),rnorm(1000,10,2)) # make different variances
)
var.test(d$resp[d$cond=="Exposed"],
d$resp[d$cond=="Control"])
# F test to compare two variances
#
# data: d$resp[d$cond == "Exposed"] and d$resp[d$cond == "Control"]
# F = 4.0976, num df = 999, denom df = 999, p-value < 2.2e-16
# alternative hypothesis: true ratio of variances is not equal to 1
# 95 percent confidence interval:
# 3.619378 4.638939
# sample estimates:
# ratio of variances
# 4.097569