當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R pairwise.prop.test 比例的成對比較


R語言 pairwise.prop.test 位於 stats 包(package)。

說明

計算比例對之間的成對比較,並進行多重測試校正

用法

pairwise.prop.test(x, n, p.adjust.method = p.adjust.methods, ...)

參數

x

成功計數向量或具有 2 列的矩陣,分別給出成功和失敗的計數。

n

試驗次數向量;如果 x 是矩陣,則忽略。

p.adjust.method

調整 p 值的方法(參見p.adjust)。可以縮寫。

...

要傳遞給 prop.test 的其他參數

"pairwise.htest"的對象

例子

smokers  <- c( 83, 90, 129, 70 )
patients <- c( 86, 93, 136, 82 )
pairwise.prop.test(smokers, patients)

也可以看看

prop.test , p.adjust

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Pairwise comparisons for proportions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。