checkm {lrmest} | R Documentation |
Check the degree of multicollinearity present in the dataset
Description
Degree of multicollinearity present in the dataset can be determined by using two type of indicators, called VIF and Condition Number.
Usage
checkm(formula, data, na.action, ...)
Arguments
formula |
in this section interested model should be given. This should be given as a |
data |
an optional data frame, list or environment containing the variables in the model. If not found in |
na.action |
if the dataset contain |
... |
currently disregarded. |
Details
If all the values of VIF > 10 implies that multicollinearity present.
If condition number < 10 ; There is not multicollinearity.
30 < condition number < 100 ; There is a multicollinearity.
condition number >100 ; Severe multicollinearity.
Value
checkm
returns the values of two multicllinearity indicators VIF and Condition Number.
Author(s)
P.Wijekoon, A.Dissanayake
Examples
## Portland cement data set is used.
data(pcd)
checkm(Y~X1+X2+X3+X4,data=pcd)