0
嘗試計算值對的比例。爲什麼使用prop.test一對或幾個(pairwise.prop.test)我得到了不同的結果?測試比例
如果我只對第一對我得到運行:P值= 0.08181
prop.test(c(73,68),c(86,93),alternative ="two.sided")
##
## 2-sample test for equality of proportions with continuity correction
##
## data: c(73, 68) out of c(86, 93)
## X-squared = 3.0286, df = 1, p-value = 0.08181
## alternative hypothesis: two.sided
## 95 percent confidence interval:
## -0.01122346 0.24653229
## sample estimates:
## prop 1 prop 2
## 0.8488372 0.7311828
當我超過1對運行我得到差異。 P值
smokers <- c(73, 68, 98, 70)
patients <- c(86, 93, 136, 182)
pairwise.prop.test(smokers, patients)
##
## Pairwise comparisons using Pairwise comparison of proportions
##
## data: smokers out of patients
##
## 1 2 3
## 2 0.16 - -
## 3 0.12 0.98 -
## 4 1.8e-11 4.4e-07 2.9e-08
##
## P value adjustment method: holm
我做錯了什麼?
由於
我不是比例測試專家,但你的問題困擾我。你從這個角度看到什麼樣的觀點表明,添加數據不會改變數據的屬性和後續的關鍵統計數據的計算? – EngBIRD
注意輸出的最後一行:'P值調整方法:holm'現在去做一些研究;) – Dason