我正在运行一些R
代码,我想检查一些数据是否独立。我可以使用拒绝独立性的卡方检验。但是我想使用 Fisher-exact 检验。再一次,p < 0.001
但我应该如何解释这个优势比?
该表由男性0
与女性1
以及超重1
与不超重组成0
。
> table(nhefs.adjust.nNA$overweight,
+ nhefs.adjust.nNA$sex,
+ dnn = c("overweight","sex"))
sex
overweight 0 1
0 407 535
1 419 295
> fisher.test(table(nhefs.adjust.nNA$overweight,
+ nhefs.adjust.nNA$sex,
+ dnn = c("overweight","sex")))
Fisher's Exact Test for Count Data
data:
p-value = 5.145e-10
alternative hypothesis: true odds ratio is not equal to 1
95 percent confidence interval:
0.4376387 0.6554322
sample estimates:
odds ratio
0.5358085
回应 Aaron Zeng 的回答
death
overweight Y N
Y 156 558
N 165 777
odds ratio
1.316281
那么这是否应该被解释为:
超重的人的死亡几率比没有超重的人高出 32% 左右?
这似乎有点奇怪,因为 156 与 165 似乎意味着风险较小?