summary1way(s20x)
summary1way()所属R语言包:s20x
One-way Analysis of Variance Summary
单向的差异总结分析
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Displays summary information for a one-way anova analysis. The lm object must come from a numerical response variable and a single factor. The output includes: (i) anova table; (ii) numeric
一个单因素方差分析显示摘要信息。的的LM对象必须来自一个数值响应变量和一个单一的因素。输出包括:(一)方差分析表(二)数字
用法----------Usage----------
summary1way(fit, digit = 5, conf.level = 0.95, inttype = "tukey",
pooled = TRUE, print.out = TRUE, draw.plot = TRUE, ...)
参数----------Arguments----------
参数:fit
an lm object, i.e. the output from "lm()".
LM对象,即输出“LM()”。
参数:digit
decimal numbers after the point.
后点的十进制数。
参数:conf.level
confidence level of the intervals.
的时间间隔的置信水平。
参数:inttype
three options for intervals appeared on plot: "hsd","lsd" or "ci".
三个选项间隔出现的图:“HSD”,“丽新发展”或“CI”。
参数:pooled
two options: pooled or unpooled standard deviation used for plotted intervals.
两种选择:汇集,或UNPOOLED用于绘制时间间隔的标准差。
参数:print.out
if T, print out the output on the screen.
如果T,打印出来的在屏幕上输出。
参数:draw.plot
if T, plot data with intervals.
如果T,图数据的时间间隔。
参数:...
more options.
更多的选择。
值----------Value----------
参数:Df
degrees of freedom for regression, residual and total.
回归,剩余和总的自由度。
参数:Sum of Sq
sum squares for regression, residual and total.
平方回归,剩余和总。
参数:Mean Sq
mean squares for regression and residual.
均方回归和剩余。
参数:F value
F-statistic value.
F-统计量的值。
参数:Pr(F)
参数:Main Effect
参数:Group Effects
参见----------See Also----------
"summary2way", "anova", "aov", "dummy.coef", "plot.oneway"
"summary2way", "anova", "aov", "dummy.coef", "plot.oneway"
实例----------Examples----------
attitudes <- c(5.2,5.2,6.1,6,5.75,5.6,6.25,6.8,6.87,7.1,
6.3,6.35,5.5,5.75,4.6,5.36,5.85,5.9)
l <- rep(c("Gp1","Gp2","Gp3"),rep(6,3))
l <- factor(l)
f <-lm(attitudes ~ l)
result <- summary1way(f)
result
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|