reg.slpcomp(RVAideMemoire)
reg.slpcomp()所属R语言包:RVAideMemoire
Comparison of several simple linear regression slopes
几个简单的线性回归斜率比较
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Test for equality of slopes of several simple regression lines. The function returns the confidence interval of each slope and perfoms pairwise comparisons.
测试的斜坡几个简单的回归线的平等。该函数返回的置信区间,每个斜坡和同名两两比较。
用法----------Usage----------
reg.slpcomp(formula, data=NULL, conf.level = 0.95, p.method = "fdr")
参数----------Arguments----------
参数:formula
a formula of the form y ~ x | f, where y and x give the dependent and independent variable, respectively, and f is a factor giving levels to be compared.
公式的形式y ~ x | f,其中y和x的依赖和独立的变量,分别和f是一个因素水平进行比较。
参数:data
an optional data frame containing the variables in the formula formula. By default the variables are taken from environment(formula).
一个可选的数据框包含公式formula中的变量。默认情况下,变量从environment(formula)。
参数:conf.level
confidence level.
置信水平。
参数:p.method
method for p-values correction. See help of the p.adjust() function.
p-值校正方法。 p.adjust()功能,请参阅帮助。
值----------Value----------
参数:data.name
a character string giving the name(s) of the data.
给予(s)的数据的名称的字符串。
参数:conf.level
confidence level.
置信水平。
参数:coeffs
slope of each regression line.
每个回归直线的斜率。
参数:coeffs.tab
slope and confidence interval of each regression line.
每个回归线的斜率和置信区间。
参数:p.adjust.method
method for p-value correction.
p-值校正方法。
参数:multcomp
table of results of pairwise comparisons.
两两比较的结果表。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
lm
lm
实例----------Examples----------
covariable <- rep(1:30,3)
variable <- c(seq(1,10,9/29)+rnorm(30,0,3),seq(1,30,1)+rnorm(30,0,3),seq(-1,-80,-79/29)+rnorm(30,0,3))
fact <- gl(3,30,labels=LETTERS[1:3])
reg.slpcomp(variable~covariable|fact)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|