prop.multcomp(RVAideMemoire)
prop.multcomp()所属R语言包:RVAideMemoire
Pairwise comparisons after a test for given proportions
成对比较测试后对于给定的比例
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Perform pairwise comparisons after a global test for given proportions, by using exact binomial tests.
进行两两比较后一个全球测试对于给定的比例,通过使用精确的二项式测试。
用法----------Usage----------
prop.multcomp(x, p, p.method = "fdr")
参数----------Arguments----------
参数:x
conitngency table.
conitngency表。
参数:p
theoretical proportions.
理论的地步。
参数:p.method
method for p-values correction. See help of the p.adjust() function.
p-值校正方法。 p.adjust()功能,请参阅帮助。
值----------Value----------
参数:observed
observed proportions.
观察到的地步。
参数:expected
expected proportions.
预计比例。
参数:p.adjust.method
method for p-values correction.
p-值校正方法。
参数:p.value
corrected p-values.
校正P值。
参数:comp
table or results of pairwise comparisons.
表或两两比较的结果。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
prop.test
prop.test
实例----------Examples----------
proportions <- sample(c(0,1),60,replace=TRUE)
populations <- sample(LETTERS[1:3],60,replace=TRUE)
tab.cont <- table(populations,proportions)
p.theo <- c(0.2,0.5,0.7)
prop.test(tab.cont,p=p.theo)
prop.multcomp(tab.cont,p=p.theo)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|