multipleComp(s20x)
multipleComp()所属R语言包:s20x
Multiple Comparisons
多重比较
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates and prints the estimate, multiple 95% confidence intervals; unadjusted, Tukey and Bonferroni p-values for all possible differences in means in a one-way ANOVA.
计算和打印的估计,多95%的置信区间;未经调整,杜克和Bonferroni的p值在单因素方差分析方法可能存在差异。
用法----------Usage----------
multipleComp(fit,conf.level=0.95)
参数----------Arguments----------
参数:fit
output from the command "lm()".
输出命令“LM()”。
参数:conf.level
confidence level for the confidence interval, expressed as a percentage.
置信水平的置信区间,以百分比表示。
值----------Value----------
Returns a list of estimates, confidence intervals and p-values.
返回一个列表的估计,置信区间和P值。
实例----------Examples----------
## computer data[#计算机数据]
data(computer.df)
fit <- lm(score ~ factor(selfassess), data = computer.df)
multipleComp(fit)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|