Hi,
Could someone tell me which method is correct to check multicollinearity a logistic regression model? Thanks.
1) method 1
proc logistic data= sample;
model y(event='1') =x1 x2 x3;
run;
proc reg data=sample;
model y= x1 x2 x3/vif;
run;
2) method 2
proc logistic data= sample;
model y(event='1') =x1 x2 x3;
output out=out_data p=pred;
run;
proc reg data=out_data;
model pred= x1 x2 x3/vif;
run;