skills/00-brycewang-stanford-StatsPAI/SKILL.md
Agent-native causal inference & econometrics toolkit for Python. 390+ functions, one import, unified API. Covers OLS, IV, DID, staggered DID, RDD, PSM, SCM, DML, Causal Forest, Meta-Learners, TMLE, neural causal models, and more. Every function returns structured result objects with self-describing schemas for LLM-driven workflows.
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research statspaiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
StatsPAI is the agent-native Python package for causal inference and applied econometrics. One import statspai as sp, 390+ functions, covering the complete empirical research workflow.
Source: https://github.com/brycewang-stanford/StatsPAI
PyPI: pip install statspai
Paper: Published in Journal of Open Source Software (JOSS)
StatsPAI is the first econometrics toolkit purpose-built for LLM-driven research workflows:
sp.list_functions(), sp.describe_function("did"), sp.function_schema("rdrobust") — agents can discover and understand functions without documentation lookupCausalResult with .summary(), .plot(), .to_latex(), .to_word(), .to_excel(), .cite()import statspai as sp covers everythingsp.regress(df, "y ~ x1 + x2", cluster="firm_id") # OLS
sp.ivreg(df, "y ~ x1 | z1 + z2", cluster="state") # IV/2SLS
sp.panel(df, "y ~ x1 + x2", entity="firm", time="year", model="fe") # Panel FE
sp.heckman(df, "y ~ x1", "select ~ z1 + z2") # Heckman selection
sp.qreg(df, "y ~ x1 + x2", quantile=0.5) # Quantile regression
sp.did(df, "y", "treated", "post") # Auto-dispatch (2x2 or staggered)
sp.callaway_santanna(df, "y", "group", "time") # Staggered DID (CS 2021)
sp.sun_abraham(df, "y", "cohort", "time") # Interaction-weighted event study
sp.bacon_decomposition(df, "y", "treated", "time") # TWFE diagnostic
sp.honest_did(result, method="smoothness") # Sensitivity to PT violations
sp.continuous_did(df, "y", "dose", "time") # Continuous treatment
sp.rdrobust(df, "y", "running_var", cutoff=0) # Sharp RD (CCT 2014)
sp.rdrobust(df, "y", "running_var", fuzzy="treatment") # Fuzzy RD
sp.rddensity(df, "running_var") # McCrary density test
sp.rdmc(df, "y", "running_var", cutoffs=[0, 5, 10]) # Multi-cutoff RD
sp.rkd(df, "y", "running_var", cutoff=0) # Regression kink design
sp.match(df, "treatment", covariates, method="psm") # Propensity score matching
sp.match(df, "treatment", covariates, method="cem") # Coarsened exact matching
sp.ebalance(df, "treatment", covariates) # Entropy balancing
sp.synth(df, "y", "unit", "time", treated_unit=1, treated_period=2000) # ADH SCM
sp.sdid(df, "y", "unit", "time", treated_units, treated_periods) # Synthetic DID
sp.dml(df, "y", "treatment", controls, model="PLR") # Double/Debiased ML
sp.causal_forest(df, "y", "treatment", controls) # Causal Forest (GRF)
sp.metalearner(df, "y", "treatment", controls, learner="dr") # DR-Learner
sp.tmle(df, "y", "treatment", controls) # Targeted MLE
sp.aipw(df, "y", "treatment", controls) # Augmented IPW
sp.tarnet(df, "y", "treatment", controls) # TARNet
sp.cfrnet(df, "y", "treatment", controls) # CFRNet
sp.dragonnet(df, "y", "treatment", controls) # DragonNet
sp.spec_curve(df, "y", "treatment", controls, specs) # Specification curve
sp.robustness_report(result) # Automated robustness report
sp.subgroup_analysis(df, "y", "treatment", subgroups) # Heterogeneity with Wald test
result.to_latex() # Export to LaTeX
result.to_word("output.docx") # Export to Word
result.cite() # Auto-generate citation
fig = result.plot()
sp.interactive(fig) # Stata Graph Editor-style WYSIWYG editing, 29 academic themes
import statspai as sp
# Step 1: Discover available functions
functions = sp.list_functions()
# Step 2: Understand a specific function
info = sp.describe_function("callaway_santanna")
# Step 3: Get JSON schema for structured calls
schema = sp.function_schema("callaway_santanna")
# Step 4: Execute and get structured results
result = sp.callaway_santanna(df, "y", "group", "time")
print(result.summary())
result.to_latex("tables/did_results.tex")
| Scenario | Use StatsPAI | Alternative | |----------|-------------|-------------| | Agent-driven analysis pipeline | ✅ Best choice — self-describing API | pyfixest (no agent API) | | Full causal inference workflow | ✅ 390+ functions, one import | Assemble 10+ R/Python packages | | Publication-ready output needed | ✅ Word/Excel/LaTeX/HTML built-in | statsmodels (no export) | | Staggered DID with diagnostics | ✅ CS + SA + Bacon + HonestDID | differences (partial) | | Neural causal models | ✅ TARNet/CFRNet/DragonNet | econml (partial) | | Stata users migrating to Python | ✅ Stata-equivalent function names | linearmodels (limited) |
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.