Awesome-Agent-Skills-for-Empirical-Research linearmodels
git clone https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research
T=$(mktemp -d) && git clone --depth=1 https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/17-DAAF-Contribution-Community-daaf/dot-claude/skills/linearmodels" ~/.claude/skills/brycewang-stanford-awesome-agent-skills-for-empirical-research-linearmodels && rm -rf "$T"
skills/17-DAAF-Contribution-Community-daaf/dot-claude/skills/linearmodels/SKILL.mdlinearmodels Skill
linearmodels: panel data, IV/GMM, system regression, and asset pricing models in Python. Covers PanelOLS (FE/RE), BetweenOLS, FirstDifferenceOLS, Fama-MacBeth, IV2SLS/LIML/GMM, SUR, IV3SLS, and Driscoll-Kraay SEs. Use for random effects estimation, between or first-difference panel models, system estimation (SUR, 3SLS), LIML/GMM instrumental variables, Fama-MacBeth regressions, or Driscoll-Kraay standard errors. Complements pyfixest (high-dimensional FE + DiD) and statsmodels (GLM + time series).
Comprehensive skill for panel data estimation, instrumental variables, system regression, and asset pricing with linearmodels (Kevin Sheppard). Use decision trees below to find the right guidance, then load detailed references.
What is linearmodels?
linearmodels extends statsmodels with specialized model classes for structured data:
- Panel data: PanelOLS (fixed effects), RandomEffects, BetweenOLS, FirstDifferenceOLS, PooledOLS, FamaMacBeth
- Instrumental variables: IV2SLS, IVLIML (k-class), IVGMM, IVGMMCUE (continuously updating), AbsorbingLS
- System estimation: SUR (Seemingly Unrelated Regression), IV3SLS, IVSystemGMM
- Asset pricing: LinearFactorModel, LinearFactorModelGMM, TradedFactorModel
- Rich inference: Driscoll-Kraay, clustered (1- and 2-way), HAC kernels (Bartlett, Parzen, Quadratic Spectral)
- Dual API: Formula-based (via formulaic) and array-based interfaces
How to Use This Skill
Reference File Structure
| File | Purpose | When to Read |
|---|---|---|
| Installation, MultiIndex setup, formula vs array API, first model | Starting with linearmodels |
| PanelOLS, RandomEffects, BetweenOLS, FD, Pooled, FamaMacBeth | Panel data estimation |
| IV2SLS, IVLIML, IVGMM, IVGMMCUE, AbsorbingLS | IV / GMM estimation |
| SUR, IV3SLS, IVSystemGMM, cross-equation constraints | System estimation |
| LinearFactorModel, TradedFactorModel, GMM estimation | Asset pricing tests |
| All SE types, Driscoll-Kraay, clustering, GMM weights | Choosing standard errors |
| MultiIndex requirement, pyfixest/statsmodels boundary, limits | Debugging issues |
Reading Order
- New to linearmodels? Start with
thenquickstart.mdpanel-models.md - Need IV/GMM? Read
thenquickstart.mdiv-models.md - System estimation (SUR/3SLS)? Read
thenquickstart.mdsystem-models.md - Asset pricing? Read
thenquickstart.mdasset-pricing.md - Choosing SEs? Read
covariance-inference.md - Coming from pyfixest? Read
thenquickstart.mdgotchas.md
Related Skills
| Skill | Relationship |
|---|---|
| Preferred for high-dimensional FE, FE + IV, DiD, fast demeaning, publication tables. Use linearmodels when pyfixest cannot do what you need (RE, system models, LIML/GMM, Fama-MacBeth) |
| Foundation library. Use statsmodels for GLM, time series, diagnostics. linearmodels extends statsmodels for panel/IV/system models |
| Survey-weighted regression with complex survey designs. linearmodels supports for population/precision weighting in panel models, but this is NOT equivalent to design-based survey inference — it does not handle stratification, clustering as a design feature, or replicate weights. If your data comes from a complex probability survey, use |
| Methodology guidance — load for "why and when" behind model choices |
| Data preparation before estimation; convert to pandas with before passing to linearmodels |
Quick Decision Trees
"I need a panel model"
What panel estimation method? ├─ Fixed effects (within estimator) │ ├─ 1-2 way FE, no IV → linearmodels PanelOLS or pyfixest feols │ ├─ 3+ way FE → pyfixest (linearmodels max 2-way in PanelOLS) │ ├─ FE + IV combined → pyfixest (linearmodels has no Panel IV) │ └─ FE + DiD → pyfixest (linearmodels has no DiD) ├─ Random effects (GLS) → linearmodels RandomEffects │ └─ → ./references/panel-models.md ├─ FE vs RE comparison → linearmodels (run both, compare) │ └─ → ./references/panel-models.md ├─ Between estimator → linearmodels BetweenOLS │ └─ → ./references/panel-models.md ├─ First difference → linearmodels FirstDifferenceOLS │ └─ → ./references/panel-models.md ├─ Pooled OLS (panel-aware SEs) → linearmodels PooledOLS │ └─ → ./references/panel-models.md └─ Fama-MacBeth → linearmodels FamaMacBeth └─ → ./references/panel-models.md
"I need IV / GMM estimation"
What IV method? ├─ 2SLS (standard IV) │ ├─ With fixed effects → pyfixest (linearmodels has no Panel IV) │ └─ Without FE → linearmodels IV2SLS or pyfixest │ └─ → ./references/iv-models.md ├─ LIML / k-class (better finite-sample) → linearmodels IVLIML │ └─ → ./references/iv-models.md ├─ GMM-IV (efficient, overidentified) → linearmodels IVGMM │ └─ → ./references/iv-models.md ├─ Continuously updating GMM → linearmodels IVGMMCUE │ └─ → ./references/iv-models.md └─ High-dimensional absorbed FE (OLS) → linearmodels AbsorbingLS └─ → ./references/iv-models.md
"I need system estimation"
System of equations? ├─ Multiple equations, correlated errors → SUR │ └─ → ./references/system-models.md ├─ Multiple equations + endogenous variables → IV3SLS │ └─ → ./references/system-models.md ├─ System GMM → IVSystemGMM │ └─ → ./references/system-models.md ├─ Cross-equation parameter restrictions → LinearConstraint │ └─ → ./references/system-models.md └─ Not sure which → Start with SUR └─ → ./references/system-models.md
"Something isn't working"
Having issues? ├─ TypeError about DataFrame index → ./references/gotchas.md ├─ Need FE + IV in one model → ./references/gotchas.md ├─ Need 3+ way fixed effects → ./references/gotchas.md ├─ Constant term confusion → ./references/gotchas.md ├─ Formula parsing errors → ./references/gotchas.md ├─ Want to compare with pyfixest → ./references/gotchas.md └─ SUR performance issues → ./references/gotchas.md
File-First Execution in Research Workflows
Important: In data research pipelines (see
CLAUDE.md), linearmodels estimation is executed through script files, not interactively. This ensures auditability and reproducibility.
The pattern:
- Write model code to
scripts/stage8_analysis/{step}_{task-name}.py - Execute via Bash with automatic output capture wrapper script
- Validation results get automatically embedded in scripts as comments
- If failed, create versioned copy for fixes
Closely read
agent_reference/SCRIPT_EXECUTION_REFERENCE.md for the mandatory file-first execution protocol covering complete code file writing, output capture, and file versioning rules.
The examples below show linearmodels syntax. In research workflows, wrap them in scripts following the file-first pattern.
Quick Reference
Essential Imports
from linearmodels.panel import PanelOLS, RandomEffects, BetweenOLS from linearmodels.panel import FirstDifferenceOLS, PooledOLS, FamaMacBeth from linearmodels.iv import IV2SLS, IVLIML, IVGMM, IVGMMCUE, AbsorbingLS from linearmodels.system import SUR, IV3SLS, IVSystemGMM from linearmodels.panel import compare # Panel model comparison tables
Data Setup (Critical — MultiIndex Required for Panel Models)
import pandas as pd # Panel data MUST have a MultiIndex with (entity, time) df = df.set_index(["entity_id", "year"]) # Verify the index print(f"Index names: {df.index.names}") print(f"Index levels: {df.index.nlevels}")
Core Operations
| Operation | Code |
|---|---|
| Panel FE (formula) | |
| Panel FE (array) | |
| Two-way FE | |
| Random effects | |
| Between OLS | |
| First difference | |
| Fama-MacBeth | |
| IV / 2SLS | |
| LIML | |
| Clustered SEs | |
| Driscoll-Kraay | |
| Summary | |
| Model comparison | |
Formula Syntax
# Panel FE keywords (appear in formula, not after |) "y ~ x1 + x2 + EntityEffects" # Entity FE "y ~ x1 + x2 + EntityEffects + TimeEffects" # Two-way FE "y ~ x1 + x2 + TimeEffects" # Time FE only # IV bracket notation "y ~ 1 + exog + [endog ~ instrument1 + instrument2]" # Suppress intercept "y ~ x1 + x2 - 1"
Topic Index
| Topic | Reference File |
|---|---|
| Installation | |
| MultiIndex data setup | |
| Formula vs array API | |
| First model | |
| Syntax comparison (pyfixest, statsmodels) | |
| PanelOLS (entity/time effects) | |
| RandomEffects | |
| BetweenOLS | |
| FirstDifferenceOLS | |
| PooledOLS | |
| FamaMacBeth | |
| FE vs RE decision | |
| Variance decomposition | |
| Weighted panel estimation | |
| R-squared types (within, between, overall) | |
| IV2SLS | |
| IVLIML and k-class estimators | |
| IVGMM (1-step, 2-step, iterative) | |
| IVGMMCUE | |
| AbsorbingLS (high-dim FE OLS) | |
| First-stage diagnostics | |
| Overidentification tests | |
| SUR (Seemingly Unrelated Regression) | |
| IV3SLS | |
| IVSystemGMM | |
| Cross-equation constraints | |
| LinearFactorModel | |
| TradedFactorModel | |
| Factor model GMM | |
| Driscoll-Kraay SEs | |
| Clustered SEs (entity, time, both) | |
| HAC / kernel covariance | |
| GMM weight matrices | |
| Debiased inference | |
| MultiIndex requirement | |
| Maximum 2-way FE limit | |
| No Panel IV | |
| pyfixest vs linearmodels boundary | |
| statsmodels vs linearmodels boundary | |
| Constant term handling | |
Citation
When this library is used as a primary analytical tool, include in the report's Software & Tools references:
Sheppard, K. linearmodels: Econometric models for panel data, IV/GMM, and system regression [Computer software]. https://bashtage.github.io/linearmodels/
Cite when: linearmodels is used for panel estimation (RE, between), IV/GMM, Fama-MacBeth, or system regression (SUR, 3SLS). Do not cite when: Only imported but no estimation performed.
For method-specific citations (e.g., individual estimators or techniques), consult the reference files in this skill and
agent_reference/CITATION_REFERENCE.md.