simple.lm(UsingR)
simple.lm()所属R语言包:UsingR
Simplify usage of lm
简化了使用的LM
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simplify usage of lm by avoiding model notation, drawing plot, drawing regression line, drawing confidence intervals.
简化使用的LM,避免模型表示法,绘制图,绘制回归直线,画置信区间。
用法----------Usage----------
simple.lm(x, y, show.residuals=FALSE, show.ci=FALSE, conf.level=0.95,pred=)
参数----------Arguments----------
参数:x
The predictor variable
预测变量
参数:y
The response variable
应变量
参数:show.residuals
set to TRUE to plot residuals
设置为TRUE绘制残差
参数:show.ci
set to TRUE to plot confidence intervals
设置为TRUE,绘制置信区间
参数:conf.level
if show.ci=TRUE will plot these CI's at this level
如果show.ci = TRUE将绘制这些CI在这个级别
参数:pred
values of the x-variable for prediction
预测变量的x的值
值----------Value----------
returns plots and an instance of lm, as though it were called lm(y ~ x)
返回的图和LM的一个实例,它被称为lm(y ~ x)
(作者)----------Author(s)----------
John Verzani
参见----------See Also----------
lm
LM
实例----------Examples----------
## on simulated data[#模拟数据]
x<-1:10
y<-5*x + rnorm(10,0,1)
tmp<-simple.lm(x,y)
summary(tmp)
## predict values[#预测值]
simple.lm(x,y,pred=c(5,6,7))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|