Created
December 1, 2015 17:26
-
-
Save daigotanaka/1161472b6e098d5ae080 to your computer and use it in GitHub Desktop.
Stepwise VIF function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#stepwise VIF function | |
stepwiseVIF <- function(in_frame,thresh=10,trace=T){ | |
require(fmsb) | |
if(class(in_frame) != "data.frame") in_frame <- data.frame(in_frame) | |
#get initial vif value for all comparisons of variables | |
vif_init <- NULL | |
for(val in names(in_frame)){ | |
form_in <- formula(paste(val," ~ .")) | |
vif_init <- rbind(vif_init, c(val, VIF(lm(form_in, data=in_frame)))) | |
} | |
vif_max <- max(as.numeric(vif_init[,2])) | |
if(vif_max < thresh){ | |
if(trace == T){ #print output of each iteration | |
prmatrix(vif_init, collab=c("var", "vif"), rowlab=rep("", nrow(vif_init)), quote=F) | |
cat("\n") | |
cat(paste("All variables have VIF < ", thresh,", max VIF ",round(vif_max, 2), sep=""), "\n\n") | |
} | |
return(names(in_frame)) | |
} else{ | |
in_dat <- in_frame | |
#backwards selection of explanatory variables, stops when all VIF values are below "thresh" | |
while(vif_max >= thresh){ | |
vif_vals <- NULL | |
for(val in names(in_dat)){ | |
form_in <- formula(paste(val, " ~ .")) | |
vif_add <- VIF(lm(form_in, data=in_dat)) | |
vif_vals <- rbind(vif_vals, c(val, vif_add)) | |
} | |
max_row <- which(vif_vals[, 2] == max(as.numeric(vif_vals[, 2])))[1] | |
vif_max <- as.numeric(vif_vals[max_row,2]) | |
if(vif_max<thresh) break | |
if(trace==T){ #print output of each iteration | |
prmatrix(vif_vals,collab=c("var", "vif"), rowlab=rep("", nrow(vif_vals)), quote=F) | |
cat("\n") | |
cat("removed: ", vif_vals[max_row,1], vif_max, "\n\n") | |
flush.console() | |
} | |
in_dat <- in_dat[, !names(in_dat) %in% vif_vals[max_row, 1]] | |
} | |
return(names(in_dat)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment