chisq.theo.multcomp(RVAideMemoire)
chisq.theo.multcomp()所属R语言包:RVAideMemoire
Pairwise comparisons after a chi-squared test for given probabilities
成对比较后,卡方检验对于给定的概率
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Perform pairwise comparisons after a global chi-squared test for given probabilities.
进行两两比较,后一个全球性的卡方检验对于给定的概率。
用法----------Usage----------
chisq.theo.multcomp(x, p = rep(1/length(x), length(x)), p.method = "fdr")
参数----------Arguments----------
参数:x
numeric vector (counts).
数字矢量(计数)。
参数:p
theoretical proportions.
理论的地步。
参数:p.method
method for p-values correction. See help of the p.adjust() function.
p-值校正方法。 p.adjust()功能,请参阅帮助。
值----------Value----------
参数:observed
observed counts.
观察计数。
参数:expected
expected counts.
预计计数。
参数:p.adjust.method
method for p-values correction.
p-值校正方法。
参数:statistic
statistics of each test.
每个测试统计。
参数:p.value
corrected p-values.
校正P值。
参数:comp
data frame of results.
数据框的结果。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
chisq.test
chisq.test
实例----------Examples----------
counts <- c(5,15,23,8,14)
p.theo <- c(0.1,0.4,0.3,0.15,0.05)
chisq.test(counts,p=p.theo)
chisq.theo.multcomp(counts,p=p.theo)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|