Enter Values
VIF Formula
VIF Results
Per-Variable Diagnostics
| Variable | VIF | Tolerance | SE Multiplier | Status |
|---|
VIF Bar Chart
Correlation Heatmap
Formula Breakdown
VIF Interpretation Guide
| VIF Range | Tolerance | Assessment |
|---|---|---|
| VIF < 5 | TOL > 0.20 | Low multicollinearity |
| 5 ≤ VIF ≤ 10 | 0.10 ≤ TOL ≤ 0.20 | Moderate multicollinearity |
| VIF > 10 | TOL < 0.10 | High multicollinearity |
Model Assumptions
- VIF measures linear association among regressors only — it does not detect nonlinear relationships.
- High VIF inflates standard errors but does NOT bias OLS coefficients (under standard assumptions, absent perfect multicollinearity).
- VIF thresholds (5, 10) are common rules of thumb, not formal statistical tests.
- R²j is from regressing Xj on all other regressors with intercept, using the same sample.
- Dropping variables to reduce VIF can introduce omitted variable bias.
- For educational purposes only. Not professional statistical advice.
Understanding Multicollinearity & VIF
What is Multicollinearity?
Multicollinearity occurs when independent variables in a multiple regression model are highly correlated with each other. While it does not bias OLS coefficient estimates, it inflates standard errors, making it harder to identify which variables are individually significant.
Var(β̂j) = σ² / [SSTj × (1 − R²j)]
Where R²j is from the auxiliary regression of Xj on all other regressors
Bias vs. Precision
A common misconception is that multicollinearity biases regression coefficients. In fact, under the standard Gauss-Markov assumptions, OLS remains the Best Linear Unbiased Estimator (BLUE) even with imperfect multicollinearity. The real issue is precision: as VIF increases, confidence intervals widen and t-statistics shrink, making it harder to reject null hypotheses.
When to Worry
- VIF > 10 is a common rule-of-thumb threshold, but context matters.
- If your coefficient estimates have acceptable precision (narrow enough confidence intervals), high VIF may not be a practical problem.
- Do not drop theoretically important variables just to reduce VIF — this can introduce omitted variable bias, which is worse than imprecise estimates.
- Increasing sample size is often the best remedy, as it reduces standard errors without risking bias.
Frequently Asked Questions
Disclaimer
This calculator is for educational purposes only. VIF thresholds are rules of thumb and should be interpreted in context. Multicollinearity diagnostics are one part of regression analysis and should not be used in isolation. Not professional statistical advice.