Regression Analysis
Statistical modeling of relationships between dependent and independent variables.
Regression Analysis is the family of statistical techniques for modeling the relationship between a dependent variable (response, outcome) and one or more independent variables (predictors, covariates), estimating the conditional expectation of the dependent given the independents and quantifying the uncertainty of the estimates. The technique's name comes from Francis Galton's 1886 observation of 'regression toward mean stature' — children of unusually tall parents tend to be tall but less so than their parents, and vice versa. Galton's collaborator Karl Pearson developed the mathematical framework for correlation and the early formalization of linear regression in the 1890s-1900s, with substantial subsequent development through R.A. Fisher (maximum likelihood, ANOVA), the Yule, Wald, and Cochran traditions. The basic model — linear regression with normally distributed errors — extends through enormous generalizations: multiple regression (multiple predictors), generalized linear models (Nelder-Wedderburn 1972 — Poisson regression for counts, logistic regression for binary outcomes, etc.), nonlinear regression, robust regression (Huber 1964), regularized regression (ridge — Hoerl-Kennard 1970, lasso — Tibshirani 1996, elastic net — Zou-Hastie 2005), nonparametric regression (kernel methods, splines, additive models), and machine-learning regression (decision trees, random forests, gradient boosting, neural networks). Regression analysis is foundational across essentially every quantitative scientific discipline and is the workhorse method in epidemiology, economics, social sciences, and applied machine learning. The framework's apparent simplicity masks substantial sophistication required for valid inference (assumption checking, confounding, multicollinearity, heteroscedasticity, omitted variable bias, causal identification).
Core components
- Dependent variable (response) and independent variables (predictors)
- Linear regression as foundational case
- Multiple regression
- Generalized linear models (logistic, Poisson, etc.)
- Nonlinear and nonparametric regression
- Regularized regression (ridge, lasso, elastic net)
- Robust regression
- Goodness of fit (R², AIC, BIC, cross-validation)
- Standard errors and confidence intervals
- Distinction from causal inference (regression coefficients are not causal effects without identifying assumptions)
- Connection to ANOVA, ANCOVA, mixed models
Primary use case
Foundational statistical method across essentially every quantitative scientific discipline; epidemiology (risk factor analysis); economics (econometrics); social sciences (sociology, political science, education); biostatistics; psychometrics; finance (asset pricing, factor models); machine learning (linear/logistic regression as baselines, regularized regression for high-dimensional data); foundation for substantial commercial software (SPSS, SAS, R packages, scikit-learn); pedagogical foundation in essentially every applied statistics curriculum.
Common criticisms
- Substantial misuse of regression in applied research — interpreting regression coefficients as causal effects without identifying assumptions, ignoring confounding, multicollinearity, omitted variable bias, and other assumption violations
- the assumption of correct functional form is often violated
- heteroscedasticity, non-normality, and outliers can produce misleading inference
- high-dimensional regression (more predictors than observations) requires regularization and careful methodology
- machine-learning regression methods often have better predictive performance but worse interpretability than classical regression
- commercial regression software produces output without sufficient diagnostic checking
- cross-validation and out-of-sample evaluation are often skipped in applied research, producing optimistic in-sample fits
- integration with causal inference methodology requires understanding that regression coefficients are conditional expectations, not causal effects (Pearl's substantial point about the limits of regression-only thinking)
- tendency to over-interpret statistical significance (small p-value) as practical significance
- reproducibility and replication concerns in regression-based research.
Lineage
- Child of
- Frequentist Statistics
- Siblings
- Frequentist Statistics, Causal Inference
- Derived from
- Frequentist Statistics