CNs | R Documentation |
This function returns the Condition Number (CN) of the independent variables of a multiple linear model considering the intercept and without considering it. It also returns the increase produced by going from not taking into account the intercept to having it.
CNs(X)
X |
A numeric design matrix that should contain more than one regressor (intercept included). |
CN1 |
Condition Number without intercept. |
CN2 |
Condition Number with intercept. |
increment |
Increase (in percentage) in the CN from CN1 to CN2. |
R. Salmerón (romansg@ugr.es) and C. García (cbgarcia@ugr.es).
D. A. Belsley (1991). Conditioning diagnostics: collinearity and weak data in regression. John Wiley & Sons, New York.
L. R. Klein and A.S. Goldberger (1964). An economic model of the United States, 1929-1952. North Holland Publishing Company, Amsterdan.
H. Theil (1971). Principles of Econometrics. John Wiley & Sons, New York.
lu
, CN
.
# Henri Theil's textile consumption data modified data(theil) head(theil) cte = array(1,length(theil[,2])) theil.X = cbind(cte,theil[,-(1:2)]) CNs(theil.X) # Klein and Goldberger data on consumption and wage income data(KG) head(KG) cte = array(1,length(KG[,1])) KG.X = cbind(cte,KG[,-1]) CNs(KG.X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.