Statsmodels: Statistical Modeling and Econometrics
Overview
Statsmodels is Python's premier library for statistical modeling, providing tools for estimation, inference, and diagnostics across a wide range of statistical methods. Apply this skill for rigorous statistical analysis, from simple linear regression to complex time series models and econometric analyses.
Current Compatibility
Examples target statsmodels 0.14.6, released Dec 5, 2025. For reproducible environments, pin the primary package:
uv pip install statsmodels==0.14.6
Use statsmodels.api and statsmodels.formula.api for stable high-level imports, and direct module imports when examples require newer or specialized classes such as HurdleCountModel.
When to Use This Skill
This skill should be used when:
- Fitting regression models (OLS, WLS, GLS, quantile regression)
- Performing generalized linear modeling (logistic, Poisson, Gamma, etc.)
- Analyzing discrete outcomes (binary, multinomial, count, ordinal)
- Conducting time series analysis (ARIMA, SARIMAX, VAR, forecasting)
- Running statistical tests and diagnostics
- Testing model assumptions (heteroskedasticity, autocorrelation, normality)
- Detecting outliers and influential observations
- Comparing models (AIC/BIC, likelihood ratio tests)
- Estimating causal effects
- Producing publication-ready statistical tables and inference
Quick Start, Capabilities, and Model Selection
- references/quick_start_guide.md: minimal worked
examples for OLS, logistic regression, ARIMA, and GLM, and how to read the summary.
- references/modeling_capabilities.md: linear
models, GLMs, discrete choice, time series, and the statistical tests and diagnostics.
- references/model_selection.md: the R-style formula API
and model comparison.
- Per-topic detail: references/linear_models.md,
references/glm.md,
references/discrete_choice.md,
references/time_series.md, and
references/stats_diagnostics.md.
statsmodels is for inference — standard errors, confidence intervals, and hypothesis
tests. Reach for scikit-learn when prediction is the goal and the coefficients do not
need interpreting.
Best Practices
Data Preparation
- Always add constant: Use
sm.add_constant() unless excluding intercept
- Check for missing values: Handle or impute before fitting
- Scale if needed: Improves convergence, interpretation (but not required for tree models)
- Encode categoricals: Use formula API or manual dummy coding
Model Building
- Start simple: Begin with basic model, add complexity as needed
- Check assumptions: Test residuals, heteroskedasticity, autocorrelation
- Use appropriate model: Match model to outcome type (binary→Logit, count→Poisson)
- Consider alternatives: If assumptions violated, use robust methods or different model
Inference
- Report effect sizes: Not just p-values
- Use robust SEs: When heteroskedasticity or clustering present
- Multiple comparisons: Correct when testing many hypotheses
- Confidence intervals: Always report alongside point estimates
Model Evaluation
- Check residuals: Plot residuals vs fitted, Q-Q plot
- Influence diagnostics: Identify and investigate influential observations
- Out-of-sample validation: Test on holdout set or cross-validate
- Compare models: Use AIC/BIC for non-nested, LR test for nested
Reporting
- Comprehensive summary: Use
.summary() for detailed output
- Document decisions: Note transformations, excluded observations
- Interpret carefully: Account for link functions (e.g., exp(β) for log link)
- Visualize: Plot predictions, confidence intervals, diagnostics
Common Workflows
Workflow 1: Linear Regression Analysis
- Explore data (plots, descriptives)
- Fit initial OLS model
- Check residual diagnostics
- Test for heteroskedasticity, autocorrelation
- Check for multicollinearity (VIF)
- Identify influential observations
- Refit with robust SEs if needed
- Interpret coefficients and inference
- Validate on holdout or via CV
Workflow 2: Binary Classification
- Fit logistic regression (Logit)
- Check for convergence issues
- Interpret odds ratios
- Calculate marginal effects
- Evaluate classification performance (AUC, confusion matrix)
- Check for influential observations
- Compare with alternative models (Probit)
- Validate predictions on test set
Workflow 3: Count Data Analysis
- Fit Poisson regression
- Check for overdispersion
- If overdispersed, fit Negative Binomial
- Check for excess zeros (consider ZIP/ZINB)
- Interpret rate ratios
- Assess goodness of fit
- Compare models via AIC
- Validate predictions
Workflow 4: Time Series Forecasting
- Plot series, check for trend/seasonality
- Test for stationarity (ADF, KPSS)
- Difference if non-stationary
- Identify p, q from ACF/PACF
- Fit ARIMA or SARIMAX
- Check residual diagnostics (Ljung-Box)
- Generate forecasts with confidence intervals
- Evaluate forecast accuracy on test set
Reference Documentation
This skill includes comprehensive reference files for detailed guidance:
references/linear_models.md
Detailed coverage of linear regression models including:
- OLS, WLS, GLS, GLSAR, Quantile Regression
- Mixed effects models
- Recursive and rolling regression
- Comprehensive diagnostics (heteroskedasticity, autocorrelation, multicollinearity)
- Influence statistics and outlier detection
- Robust standard errors (HC, HAC, cluster)
- Hypothesis testing and model comparison
references/glm.md
Complete guide to generalized linear models:
- All distribution families (Binomial, Poisson, Gamma, etc.)
- Link functions and when to use each
- Model fitting and interpretation
- Pseudo R-squared and goodness of fit
- Diagnostics and residual analysis
- Applications (logistic, Poisson, Gamma regression)
references/discrete_choice.md
Comprehensive guide to discrete outcome models:
- Binary models (Logit, Probit)
- Multinomial models (MNLogit, Conditional Logit)
- Count models (Poisson, Negative Binomial, Zero-Inflated, Hurdle)
- Ordinal models
- Marginal effects and interpretation
- Model diagnostics and comparison
references/time_series.md
In-depth time series analysis guidance:
- Univariate models (AR, ARIMA, SARIMAX, Exponential Smoothing)
- Multivariate models (VAR, VARMAX, Dynamic Factor)
- State space models
- Stationarity testing and diagnostics
- Forecasting methods and evaluation
- Granger causality, IRF, FEVD
references/stats_diagnostics.md
Comprehensive statistical testing and diagnostics:
- Residual diagnostics (autocorrelation, heteroskedasticity, normality)
- Influence and outlier detection
- Hypothesis tests (parametric and non-parametric)
- ANOVA and post-hoc tests
- Multiple comparisons correction
- Robust covariance matrices
- Power analysis and effect sizes
When to reference:
- Need detailed parameter explanations
- Choosing between similar models
- Troubleshooting convergence or diagnostic issues
- Understanding specific test statistics
- Looking for code examples for advanced features
Search patterns:
# Find information about specific models
rg "Quantile Regression" references/
# Find diagnostic tests
rg "Breusch-Pagan" references/stats_diagnostics.md
# Find time series guidance
rg "SARIMAX" references/time_series.md
Common Pitfalls to Avoid
- Forgetting constant term: Always use
sm.add_constant() unless no intercept desired
- Ignoring assumptions: Check residuals, heteroskedasticity, autocorrelation
- Wrong model for outcome type: Binary→Logit/Probit, Count→Poisson/NB, not OLS
- Not checking convergence: Look for optimization warnings
- Misinterpreting coefficients: Remember link functions (log, logit, etc.)
- Using Poisson with overdispersion: Check dispersion, use Negative Binomial if needed
- Not using robust SEs: When heteroskedasticity or clustering present
- Overfitting: Too many parameters relative to sample size
- Data leakage: Fitting on test data or using future information
- Not validating predictions: Always check out-of-sample performance
- Comparing non-nested models: Use AIC/BIC, not LR test
- Ignoring influential observations: Check Cook's distance and leverage
- Multiple testing: Correct p-values when testing many hypotheses
- Not differencing time series: Fit ARIMA on non-stationary data
- Confusing prediction vs confidence intervals: Prediction intervals are wider
Getting Help
For detailed documentation and examples:
Source: K-Dense-AI/scientific-agent-skills → skills/statsmodels/SKILL.md
1---2name: statsmodels-23description: Statistical models library for Python. Use when you need specific model classes (OLS, GLM, mixed models, ARIMA) with detailed diagnostics, residuals, and inference. Best for econometrics, time series, rigorous inference with coefficient tables. For guided statistical test selection with APA reporting use statistical-analysis.4---5
6
7# Statsmodels: Statistical Modeling and Econometrics
8
9## Overview
10
11Statsmodels is Python's premier library for statistical modeling, providing tools for estimation, inference, and diagnostics across a wide range of statistical methods. Apply this skill for rigorous statistical analysis, from simple linear regression to complex time series models and econometric analyses.
12
13## Current Compatibility
14
15Examples target statsmodels 0.14.6, released Dec 5, 2025. For reproducible environments, pin the primary package:
16
17```bash
18uv pip install statsmodels==0.14.6
19```
20
21Use `statsmodels.api` and `statsmodels.formula.api` for stable high-level imports, and direct module imports when examples require newer or specialized classes such as `HurdleCountModel`.
22
23## When to Use This Skill
24
25This skill should be used when:
26- Fitting regression models (OLS, WLS, GLS, quantile regression)
27- Performing generalized linear modeling (logistic, Poisson, Gamma, etc.)
28- Analyzing discrete outcomes (binary, multinomial, count, ordinal)
29- Conducting time series analysis (ARIMA, SARIMAX, VAR, forecasting)
30- Running statistical tests and diagnostics
31- Testing model assumptions (heteroskedasticity, autocorrelation, normality)
32- Detecting outliers and influential observations
33- Comparing models (AIC/BIC, likelihood ratio tests)
34- Estimating causal effects
35- Producing publication-ready statistical tables and inference
36
37## Quick Start, Capabilities, and Model Selection
38
39- [references/quick_start_guide.md](references/quick_start_guide.md): minimal worked
40 examples for OLS, logistic regression, ARIMA, and GLM, and how to read the summary.
41- [references/modeling_capabilities.md](references/modeling_capabilities.md): linear
42 models, GLMs, discrete choice, time series, and the statistical tests and diagnostics.
43- [references/model_selection.md](references/model_selection.md): the R-style formula API
44 and model comparison.
45- Per-topic detail: [references/linear_models.md](references/linear_models.md),
46 [references/glm.md](references/glm.md),
47 [references/discrete_choice.md](references/discrete_choice.md),
48 [references/time_series.md](references/time_series.md), and
49 [references/stats_diagnostics.md](references/stats_diagnostics.md).
50
51statsmodels is for *inference* — standard errors, confidence intervals, and hypothesis
52tests. Reach for scikit-learn when prediction is the goal and the coefficients do not
53need interpreting.
54
55## Best Practices
56
57### Data Preparation
58
591. **Always add constant**: Use `sm.add_constant()` unless excluding intercept
602. **Check for missing values**: Handle or impute before fitting
613. **Scale if needed**: Improves convergence, interpretation (but not required for tree models)
624. **Encode categoricals**: Use formula API or manual dummy coding
63
64### Model Building
65
661. **Start simple**: Begin with basic model, add complexity as needed
672. **Check assumptions**: Test residuals, heteroskedasticity, autocorrelation
683. **Use appropriate model**: Match model to outcome type (binary→Logit, count→Poisson)
694. **Consider alternatives**: If assumptions violated, use robust methods or different model
70
71### Inference
72
731. **Report effect sizes**: Not just p-values
742. **Use robust SEs**: When heteroskedasticity or clustering present
753. **Multiple comparisons**: Correct when testing many hypotheses
764. **Confidence intervals**: Always report alongside point estimates
77
78### Model Evaluation
79
801. **Check residuals**: Plot residuals vs fitted, Q-Q plot
812. **Influence diagnostics**: Identify and investigate influential observations
823. **Out-of-sample validation**: Test on holdout set or cross-validate
834. **Compare models**: Use AIC/BIC for non-nested, LR test for nested
84
85### Reporting
86
871. **Comprehensive summary**: Use `.summary()` for detailed output
882. **Document decisions**: Note transformations, excluded observations
893. **Interpret carefully**: Account for link functions (e.g., exp(β) for log link)
904. **Visualize**: Plot predictions, confidence intervals, diagnostics
91
92## Common Workflows
93
94### Workflow 1: Linear Regression Analysis
95
961. Explore data (plots, descriptives)
972. Fit initial OLS model
983. Check residual diagnostics
994. Test for heteroskedasticity, autocorrelation
1005. Check for multicollinearity (VIF)
1016. Identify influential observations
1027. Refit with robust SEs if needed
1038. Interpret coefficients and inference
1049. Validate on holdout or via CV
105
106### Workflow 2: Binary Classification
107
1081. Fit logistic regression (Logit)
1092. Check for convergence issues
1103. Interpret odds ratios
1114. Calculate marginal effects
1125. Evaluate classification performance (AUC, confusion matrix)
1136. Check for influential observations
1147. Compare with alternative models (Probit)
1158. Validate predictions on test set
116
117### Workflow 3: Count Data Analysis
118
1191. Fit Poisson regression
1202. Check for overdispersion
1213. If overdispersed, fit Negative Binomial
1224. Check for excess zeros (consider ZIP/ZINB)
1235. Interpret rate ratios
1246. Assess goodness of fit
1257. Compare models via AIC
1268. Validate predictions
127
128### Workflow 4: Time Series Forecasting
129
1301. Plot series, check for trend/seasonality
1312. Test for stationarity (ADF, KPSS)
1323. Difference if non-stationary
1334. Identify p, q from ACF/PACF
1345. Fit ARIMA or SARIMAX
1356. Check residual diagnostics (Ljung-Box)
1367. Generate forecasts with confidence intervals
1378. Evaluate forecast accuracy on test set
138
139## Reference Documentation
140
141This skill includes comprehensive reference files for detailed guidance:
142
143### references/linear_models.md
144Detailed coverage of linear regression models including:
145- OLS, WLS, GLS, GLSAR, Quantile Regression
146- Mixed effects models
147- Recursive and rolling regression
148- Comprehensive diagnostics (heteroskedasticity, autocorrelation, multicollinearity)
149- Influence statistics and outlier detection
150- Robust standard errors (HC, HAC, cluster)
151- Hypothesis testing and model comparison
152
153### references/glm.md
154Complete guide to generalized linear models:
155- All distribution families (Binomial, Poisson, Gamma, etc.)
156- Link functions and when to use each
157- Model fitting and interpretation
158- Pseudo R-squared and goodness of fit
159- Diagnostics and residual analysis
160- Applications (logistic, Poisson, Gamma regression)
161
162### references/discrete_choice.md
163Comprehensive guide to discrete outcome models:
164- Binary models (Logit, Probit)
165- Multinomial models (MNLogit, Conditional Logit)
166- Count models (Poisson, Negative Binomial, Zero-Inflated, Hurdle)
167- Ordinal models
168- Marginal effects and interpretation
169- Model diagnostics and comparison
170
171### references/time_series.md
172In-depth time series analysis guidance:
173- Univariate models (AR, ARIMA, SARIMAX, Exponential Smoothing)
174- Multivariate models (VAR, VARMAX, Dynamic Factor)
175- State space models
176- Stationarity testing and diagnostics
177- Forecasting methods and evaluation
178- Granger causality, IRF, FEVD
179
180### references/stats_diagnostics.md
181Comprehensive statistical testing and diagnostics:
182- Residual diagnostics (autocorrelation, heteroskedasticity, normality)
183- Influence and outlier detection
184- Hypothesis tests (parametric and non-parametric)
185- ANOVA and post-hoc tests
186- Multiple comparisons correction
187- Robust covariance matrices
188- Power analysis and effect sizes
189
190**When to reference:**
191- Need detailed parameter explanations
192- Choosing between similar models
193- Troubleshooting convergence or diagnostic issues
194- Understanding specific test statistics
195- Looking for code examples for advanced features
196
197**Search patterns:**
198```bash
199# Find information about specific models
200rg "Quantile Regression" references/
201
202# Find diagnostic tests
203rg "Breusch-Pagan" references/stats_diagnostics.md
204
205# Find time series guidance
206rg "SARIMAX" references/time_series.md
207```
208
209## Common Pitfalls to Avoid
210
2111. **Forgetting constant term**: Always use `sm.add_constant()` unless no intercept desired
2122. **Ignoring assumptions**: Check residuals, heteroskedasticity, autocorrelation
2133. **Wrong model for outcome type**: Binary→Logit/Probit, Count→Poisson/NB, not OLS
2144. **Not checking convergence**: Look for optimization warnings
2155. **Misinterpreting coefficients**: Remember link functions (log, logit, etc.)
2166. **Using Poisson with overdispersion**: Check dispersion, use Negative Binomial if needed
2177. **Not using robust SEs**: When heteroskedasticity or clustering present
2188. **Overfitting**: Too many parameters relative to sample size
2199. **Data leakage**: Fitting on test data or using future information
22010. **Not validating predictions**: Always check out-of-sample performance
22111. **Comparing non-nested models**: Use AIC/BIC, not LR test
22212. **Ignoring influential observations**: Check Cook's distance and leverage
22313. **Multiple testing**: Correct p-values when testing many hypotheses
22414. **Not differencing time series**: Fit ARIMA on non-stationary data
22515. **Confusing prediction vs confidence intervals**: Prediction intervals are wider
226
227## Getting Help
228
229For detailed documentation and examples:
230- Official docs: https://www.statsmodels.org/stable/
231- User guide: https://www.statsmodels.org/stable/user-guide.html
232- Examples: https://www.statsmodels.org/stable/examples/index.html
233- API reference: https://www.statsmodels.org/stable/api.html
234
235---
236
237**Source:** [`K-Dense-AI/scientific-agent-skills`](https://github.com/K-Dense-AI/scientific-agent-skills) → `skills/statsmodels/SKILL.md`