getDeltaRsquare(rockchalk)
getDeltaRsquare()所属R语言包:rockchalk
Calculates the delta R-squares, also known as squared
计算R的增量的平方,也被称为平方
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The change in the R-square when a variable is removed from a regression is called delta R-square. It is sometimes suggested as a way to determine whether a variable has a substantial effect on an outcome. This is also known as the squared semi-partial correlation coefficient.
变量时除去从回归的R平方的变化被称为DeltaR平方。它有时被建议作为一种方法来确定一个变量是否有实质性影响的结果。这也被称为平方半偏相关系数。
用法----------Usage----------
getDeltaRsquare(model)
参数----------Arguments----------
参数:model
a fitted regression model
拟合的回归模型
值----------Value----------
a vector of estimates of the delta R-squares
一个向量估计的增量R-平方
(作者)----------Author(s)----------
Paul E. Johnson <pauljohn@ku.edu>
实例----------Examples----------
dat1 <- genCorrelatedData(N=250, means=c(100,100),
sds=c(30,20), rho=0.0, stde = 7, beta=c(1.1, 2.4, 4.1, 0))
m1 <- lm(y ~ x1 + x2, data=dat1)
getDeltaRsquare(m1)
## more problematic in presence of collinearity[#中存在共线性问题]
dat2 <- genCorrelatedData(N=250, means=c(100,100),
sds=c(30,20), rho=0.6, stde = 7, beta=c(1.1, 2.4, 4.1, 0))
m2 <- lm(y ~ x1 + x2, data=dat2)
getDeltaRsquare(m2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|