pairwise.prop.test(stats)
pairwise.prop.test()所属R语言包:stats
Pairwise comparisons for proportions
比例成对比较
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate pairwise comparisons between pairs of proportions with correction for multiple testing
计算与校正多个测试之间的比例对成对比较
用法----------Usage----------
pairwise.prop.test(x, n, p.adjust.method = p.adjust.methods, ...)
参数----------Arguments----------
参数:x
Vector of counts of successes or a matrix with 2 columns giving the counts of successes and failures, respectively.
向量的成功或有2列,分别给予成功和失败,计数矩阵的计数。
参数:n
Vector of counts of trials; ignored if x is a matrix.
试验计数的向量;忽略x如果是一个矩阵。
参数:p.adjust.method
Method for adjusting p values (see p.adjust)
调整p值的方法(见p.adjust)
参数:...
Additional arguments to pass to prop.test
以传递prop.test的额外的参数
值----------Value----------
Object of class "pairwise.htest"
对象类"pairwise.htest"
参见----------See Also----------
prop.test, p.adjust
prop.test,p.adjust
举例----------Examples----------
smokers <- c( 83, 90, 129, 70 )
patients <- c( 86, 93, 136, 82 )
pairwise.prop.test(smokers, patients)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|