prop.test
位於 stats
包(package)。 說明
prop.test
可用於測試多個組中的比例(成功概率)相同或等於某些給定值的零值。
用法
prop.test(x, n, p = NULL,
alternative = c("two.sided", "less", "greater"),
conf.level = 0.95, correct = TRUE)
參數
x |
成功計數向量、具有兩個條目的一維表或具有 2 列的二維表(或矩陣),分別給出成功和失敗的計數。 |
n |
試驗計數向量;如果 |
p |
成功概率的向量。 |
alternative |
指定備擇假設的字符串必須是 |
conf.level |
返回的置信區間的置信水平。必須是 0 到 1 之間的單個數字。僅在測試單個比例等於給定值或兩個比例相等的 null 時使用;否則忽略。 |
correct |
指示是否應在可能的情況下應用耶茨連續性校正的邏輯。 |
細節
僅使用具有有限數量的成功和失敗的組。成功和失敗的計數必須為非負數,因此不得大於相應的試驗次數(必須為正數)。所有有限計數都應該是整數。
如果p
是NULL
並且有多個組,則測試的空值是每個組中的比例相同。如果有兩個組,則替代方案是第一組中的成功概率小於、不等於或大於第二組中的成功概率,如 alternative
所指定。返回比例差異的置信區間,其置信水平由 conf.level
指定並剪裁為 。僅當連續性校正不超過樣本比例之差的絕對值時才使用。否則,如果組數超過 2 個,則替代方案始終為 "two.sided"
,返回的置信區間為 NULL
,並且從不使用連續性校正。
如果隻有一組,則測試的空值是成功的潛在概率為 p
,如果未給出 p
則為 0.5。另一種方法是成功概率分別小於、不等於或大於 p
或 0.5,如 alternative
所指定。返回基礎比例的置信區間,其置信水平由 conf.level
指定並剪裁為 。僅當連續性校正不超過樣本比例與無效比例之間的絕對值之差時,才使用連續性校正。置信區間是通過反轉分數測試來計算的。
最後,如果給出 p
並且有超過 2 個組,則測試的空值是成功的潛在概率是 p
給出的概率。替代方案始終是 "two.sided"
,返回的置信區間是 NULL
,並且從不使用連續性校正。
值
類"htest"
的列表包含以下組件:
statistic |
皮爾遜卡方檢驗統計量的值。 |
parameter |
檢驗統計量的近似卡方分布的自由度。 |
p.value |
檢驗的 p 值。 |
estimate |
具有樣本比例的向量 |
conf.int |
如果有一組,則為真實比例的置信區間;如果有 2 個組且未給出 |
null.value |
如果指定為 null,則為 |
alternative |
說明替代方案的字符串。 |
method |
指示所使用的方法以及是否應用 Yates 連續性校正的字符串。 |
data.name |
給出數據名稱的字符串。 |
例子
heads <- rbinom(1, size = 100, prob = .5)
prop.test(heads, 100) # continuity correction TRUE by default
prop.test(heads, 100, correct = FALSE)
## Data from Fleiss (1981), p. 139.
## H0: The null hypothesis is that the four populations from which
## the patients were drawn have the same true proportion of smokers.
## A: The alternative is that this proportion is different in at
## least one of the populations.
smokers <- c( 83, 90, 129, 70 )
patients <- c( 86, 93, 136, 82 )
prop.test(smokers, patients)
參考
Wilson, E.B. (1927). Probable inference, the law of succession, and statistical inference. Journal of the American Statistical Association, 22, 209-212. doi:10.2307/2276774.
Newcombe R.G. (1998). Two-Sided Confidence Intervals for the Single Proportion: Comparison of Seven Methods. Statistics in Medicine, 17, 857-872. doi:10.1002/(SICI)1097-0258(19980430)17:8<857::AID-SIM777>3.0.CO;2-E.
Newcombe R.G. (1998). Interval Estimation for the Difference Between Independent Proportions: Comparison of Eleven Methods. Statistics in Medicine, 17, 873-890. doi:10.1002/(SICI)1097-0258(19980430)17:8<873::AID-SIM779>3.0.CO;2-I.
也可以看看
binom.test
用於二項式假設的精確檢驗。
相關用法
- R prop.trend.test 檢驗比例趨勢
- R profile.nls 分析 nls 對象的方法
- R proj 模型預測
- R profile 分析模型的通用函數
- R profile.glm 分析 glm 對象的方法
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R predict 模型預測
- R predict.HoltWinters 擬合 Holt-Winters 模型的預測函數
- R predict.loess 預測黃土曲線或表麵
- R preplot 繪圖對象的預計算
- R prcomp 主成分分析
- R printCoefmat 打印係數矩陣
- R print.ts 時間序列對象的打印和格式化
- R predict.Arima ARIMA 的預測適合
- R predict.lm 線性模型擬合的預測方法
- R princomp 主成分分析
- R predict.nls 根據非線性最小二乘擬合進行預測
- R predict.glm GLM 擬合的預測方法
- R print.power.htest 假設檢驗和功效計算對象的打印方法
- R plot.stepfun 繪製階躍函數
- R pairwise.t.test 成對 t 檢驗
- R plot.profile.nls 繪製 profile.nls 對象
- R plot.isoreg isoreg 對象的繪圖方法
- R plot.HoltWinters HoltWinters 對象的繪圖函數
- R ppoints 概率圖的坐標
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Test of Equal or Given Proportions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。