| name | statsmodels |
| description | Advanced statistical modeling and hypothesis testing. Complementary to SciPy's stats module, it provides classes and functions for the estimation of many different statistical models, as well as for conducting statistical tests and statistical data exploration. Use for linear regression, GLM, time series analysis, ANOVA, survival analysis, causal inference, and statistical hypothesis testing. Load when working with OLS, WLS, logistic regression, Poisson regression, ARIMA, SARIMAX, statistical diagnostics, p-values, confidence intervals, or R-style statistical analysis. |
| version | 0.14 |
| license | BSD-3-Clause |
Statsmodels - Statistical Modeling & Inference
Statsmodels is the bridge between Python and the rigor of R-style statistical analysis. It allows users to estimate models using formulas (via patsy), perform extensive diagnostic tests, and produce detailed summary tables that are the standard in academic publishing.
When to Use
- Estimating Linear Regression models with detailed diagnostics (OLS, WLS).
- Generalized Linear Models (GLM): Logistic, Poisson, Gamma regression.
- Time Series Analysis (ARIMA, SARIMAX, VAR, State Space models).
- Statistical hypothesis testing (t-tests, ANOVA, normality, heteroscedasticity).
- Survival analysis (Kaplan-Meier, Cox Proportional Hazards).
- Estimating treatment effects and causal inference.
- Non-parametric statistics (Kernel Density Estimation).
Reference Documentation
Official docs: https://www.statsmodels.org/stable/
Formula API: https://www.statsmodels.org/stable/example_formulas.html
Search patterns: sm.OLS, smf.ols, sm.tsa, results.summary(), statsmodels.api
Core Principles
Statsmodels vs. scikit-learn
| Feature | scikit-learn | Statsmodels |
|---|
| Goal | Prediction (Accuracy) | Inference (Explanation/p-values) |
| Interface | fit / predict | fit / summary |
| Pre-processing | Pipeline objects | Formulas (Patsy) or design matrices |
| Diagnostics | Cross-validation | Residue analysis, p-values, CI |
The Two APIs
- API (statsmodels.api): Requires explicit addition of a constant (intercept) and uses NumPy-like arrays.
- Formula API (statsmodels.formula.api): Uses R-style formulas (
y ~ x1 + x2) and works directly with Pandas DataFrames. (Recommended for most users).
Quick Reference
Installation
pip install statsmodels patsy
Standard Imports
import statsmodels.api as sm
import statsmodels.formula.api as smf
import pandas as pd
import numpy as np
Basic Pattern - Ordinary Least Squares (OLS)
import statsmodels.formula.api as smf
model = smf.ols('tip ~ total_bill + size', data=df_tips)
results = model.fit()
print(results.summary())
p_values = results.pvalues
params = results.params
Critical Rules
✅ DO
- Check Residuals - Always plot and test residuals (
results.resid) for normality and homoscedasticity.
- Add a Constant - If using the
sm.api (not formula), remember X = sm.add_constant(X) or your model will pass through the origin (beta0 = 0).
- Use Categorical Variables - Use the
C() operator in formulas (e.g., y ~ C(region)) to automatically create dummy variables.
- Specify Covariance Type - Use
cov_type='HC3' or 'cluster' if you suspect non-constant variance (heteroscedasticity).
- Interpret R-squared carefully - High R-squared doesn't imply a good model if the residuals are patterned.
- Check for Multicollinearity - Use VIF (Variance Inflation Factor) to ensure predictors aren't highly correlated.
❌ DON'T
- Assume Prediction is Inference - Just because a model has a high R-squared doesn't mean the coefficients represent real-world causal effects.
- Ignore the Intercept - Most physical and social processes require a constant term.
- Overfit with too many predictors - Use AIC/BIC metrics to penalize complex models.
- Extrapolate beyond the range - Statistical models are only valid within the domain of the training data.
Anti-Patterns (NEVER)
import statsmodels.api as sm
model = sm.OLS(y, X)
results = model.fit()
X = sm.add_constant(X)
model = sm.OLS(y, X).fit()
smf.ols('price ~ C(color)', data=df).fit()
print(results.summary())
Regression Analysis
Linear Models (OLS, WLS)
model = smf.ols('y ~ x1 * x2 + np.log(x3)', data=df).fit()
wls_model = sm.WLS(y, X, weights=1.0/variance_estimates).fit()
Generalized Linear Models (GLM)
logit_model = smf.logit('admit ~ gre + gpa + C(rank)', data=df).fit()
poisson_model = smf.poisson('num_awards ~ math + C(prog)', data=df).fit()
nb_model = smf.glm('y ~ x1', data=df, family=sm.families.NegativeBinomial()).fit()
Time Series Analysis (tsa)
Stationarity and Modeling
from statsmodels.tsa.stattools import adfuller
from statsmodels.tsa.statespace.sarimax import SARIMAX
adf_result = adfuller(df['sales'])
print(f"ADF P-value: {adf_result[1]}")
model = SARIMAX(df['sales'],
order=(1, 1, 1),
seasonal_order=(1, 1, 0, 12),
exog=df['advertising'])
results = model.fit()
forecast = results.get_forecast(steps=12)
conf_int = forecast.conf_int()
ANOVA and Hypothesis Testing
from statsmodels.stats.anova import anova_lm
model = smf.ols('yield ~ C(fertilizer) + C(soil)', data=df).fit()
anova_table = anova_lm(model, typ=2)
from statsmodels.stats.multicomp import pairwise_tukeyhsd
tukey = pairwise_tukeyhsd(endog=df['yield'], groups=df['fertilizer'], alpha=0.05)
print(tukey)
Model Diagnostics
Residual Analysis
import statsmodels.stats.api as sms
name = ['Lagrange multiplier statistic', 'p-value', 'f-value', 'f p-value']
test = sms.het_breuschpagan(results.resid, results.model.exog)
print(dict(zip(name, test)))
influence = results.get_influence()
cooks_d = influence.cook_distance[0]
Practical Workflows
1. Robust Scientific Reporting Pipeline
def analyze_experiment(df):
"""Rigorous analysis of an experimental dataset."""
model = smf.ols('outcome ~ treatment + age + gender', data=df).fit()
import matplotlib.pyplot as plt
sm.graphics.plot_regress_exog(model, 'treatment')
from statsmodels.stats.outliers_influence import variance_inflation_factor
return model.summary()
2. Market Mix Modeling (Attribution)
def estimate_attribution(df):
model = smf.ols('np.log(sales) ~ np.log(tv_spend) + np.log(digital_spend)', data=df).fit()
return model.params
3. Survival Analysis
from statsmodels.duration.hazard_regression import PHReg
model = PHReg.from_formula('time ~ age + C(treatment)', data=df, status=df['event'])
results = model.fit()
print(results.summary())
Performance Optimization
Using numba for Likelihoods
While Statsmodels is primarily written in Python and Cython, some of the newer time series modules utilize optimized numerical backends for faster fitting of state-space models.
Formulas vs Design Matrices
For very large datasets (1M+ rows), creating the design matrix with patsy can be memory-intensive. In these cases, construct your X matrix manually and use sm.OLS(y, X).
Common Pitfalls and Solutions
Singular Matrix Error
"LinAlgError: Singular matrix" means your predictors are perfectly correlated (e.g., including both temp_celsius and temp_fahrenheit).
df = df.drop('redundant_col', axis=1)
Categorical Leakage (The Dummy Variable Trap)
Including intercept and dummy variables for ALL categories creates perfect multicollinearity.
Non-Stationary Time Series
Predicting a non-stationary series leads to "spurious regression".
df['diff_y'] = df['y'].diff()
Statsmodels is the gold standard for statistical validity in the Python ecosystem. It moves beyond black-box predictions to provide the transparency and mathematical rigor required for high-stakes scientific and economic decision-making.