reg.ci(RVAideMemoire)
reg.ci()所属R语言包:RVAideMemoire
Confidence intervals of a simple linear regression
一个简单的线性回归的置信区间
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute and add to a graph the confidence interval of a simple regression line or of individual values.
计算并添加到图中的置信区间的一个简单的回归线或个人价值观。
用法----------Usage----------
reg.ci(model, conf.level = 0.95, type = c("mean", "ind"), ...)
参数----------Arguments----------
参数:model
lm model.
lm模型。
参数:conf.level
confidence level.
置信水平。
参数:type
interval type : "mean" for the interval of the regression line (default), "ind" for the interval of individual values (also called "prediction interval").
间隔类型:"mean"回归线的时间间隔(默认值),"ind"为单个值的时间间隔(也称为“预测区间”)。
参数:...
other agruments. See help of the lines() function.
其他agruments。 lines()功能,请参阅帮助。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
lm
lm
实例----------Examples----------
x <- 1:50
y <- 1:50+rnorm(50,0,4)
regression <- lm(y~x)
plot(x,y)
abline(regression)
reg.ci(regression,type="mean",col="red")
reg.ci(regression,type="ind",col="blue")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|