vif(rms)
vif()所属R语言包:rms
Variance Inflation Factors
方差膨胀因子
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes variance inflation factors from the covariance matrix of parameter estimates, using the method of Davis et al. (1986), which is based on the correlation matrix from the information matrix.
从参数估计值的协方差矩阵计算方差膨胀因子,Davis等人使用的方法。 (1986),这是基于从所述信息矩阵的相关矩阵。
用法----------Usage----------
vif(fit)
参数----------Arguments----------
参数:fit
an object created by lrm, ols, psm, cph, Rq, Glm, glm </table>
对象lrm,ols,psm,cph,Rq,Glm,glm</ TABLE>
值----------Value----------
vector of vifs
向量的vifs的
(作者)----------Author(s)----------
Frank Harrell
<br>
Department of Biostatistics
<br>
Vanderbilt University
<br>
f.harrell@vanderbilt.edu
参考文献----------References----------
among variables in a conditional logistic regression. In Modern Statistical Methods in Chronic Disease Epidemiology, Eds SH Moolgavkar and RL Prentice, pp. 140–147. New York: Wiley; 1986.
参见----------See Also----------
rmsMisc (for num.intercepts
rmsMisc(num.intercepts
实例----------Examples----------
set.seed(1)
x1 <- rnorm(100)
x2 <- x1+.1*rnorm(100)
y <- sample(0:1, 100, TRUE)
f <- lrm(y ~ x1 + x2)
vif(f)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|