The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Large language models can pick the right causal strategy most of the time but fail on the fine print: they identify the high-level design in 79% of cases but correctly specify all design details only one-third of the time, making nuanced research design the bottleneck for automated causal inference.

CausalReasoningBenchmark: A Real-World Benchmark for Disentangled Evaluation of Causal Identification and Estimation
Ayush Sawarni, Jiyuan Tan, Vasilis Syrgkanis · February 24, 2026
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Ayush Sawarni unresolved corpus identity
  2. Jiyuan Tan unresolved corpus identity
  3. Vasilis Syrgkanis unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Ayush Sawarni provider ID
  2. Jiyuan Tan provider ID
  3. Vasilis Syrgkanis provider ID
A benchmark of 173 real-world causal queries finds that an SOTA LLM correctly names the high-level identification strategy in 79% of cases but delivers fully correct, detailed identification specifications in only 34%, indicating research-design details—rather than numerical estimation—are the main failure point for automated causal inference.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Many benchmarks for automated causal inference evaluate a system's performance based on a single numerical output, such as an Average Treatment Effect (ATE). This approach conflates two distinct steps in causal analysis: identification - formulating a valid research design under stated assumptions - and estimation - implementing that design numerically on finite data. We introduce CausalReasoningBenchmark, a benchmark of 173 queries across 132 real-world datasets, curated from 79 peer-reviewed research papers and three widely-used causal-inference textbooks. For each query a system must produce (i) a structured identification specification that names the strategy, the treatment, outcome, and control variables, and all design-specific elements, and (ii) a point estimate with a standard error. By scoring these two components separately, our benchmark enables granular diagnosis: it distinguishes failures in causal reasoning from errors in numerical execution. Baseline results with a state of the art LLM show that, while the model correctly identifies the high-level strategy in 79% of cases, full identification-specification correctness drops to only 34%, revealing that the bottleneck lies in the nuanced details of research design rather than in computation. CausalReasoningBenchmark is publicly available on Hugging Face and is designed to foster the development of more robust automated causal-inference systems.

Summary

Main Finding

The authors introduce CausalReasoningBenchmark, a curated, real-world benchmark (173 queries over 132 datasets drawn from 79 peer‑reviewed papers and 3 textbooks) that disentangles identification (research-design specification) from estimation (numeric implementation). By requiring structured identification outputs and providing gold identification JSONs plus reference estimation scripts, the benchmark enables diagnosis of whether failures come from flawed causal reasoning (identification) or from implementation/estimation. A state‑of‑the‑art LLM baseline (gpt-5.3 w/ reasoning) finds the correct high‑level strategy in ≈79% of cases but achieves full identification‑spec correctness in only ≈34%, showing the main bottleneck is nuanced research‑design specification rather than computation.

Key Points

  • Scope and sources
    • 173 queries, 132 unique CSV datasets; curated from 79 research papers (political‑science reanalyses) and 53 textbook examples.
    • Covered designs: DiD (67 queries), RDD (44), Conditional exogeneity/selection‑on‑observables (39), IV (22), RCT (1).
  • Structured identification schema
    • Agents must output a JSON identification specification listing: strategy label, estimand (ATE/LATE/ATT), treatment(s), outcome(s), controls (minimal sufficient set), and design‑specific fields (e.g., instrument(s) & encouragement flag for IV; running variable & cutoff for RDD; time & group variables for DiD).
    • Benchmarks mark “bad controls” (post‑treatment/mediators/colliders) to detect critical errors.
  • Disentangled evaluation
    • Identification scoring: field‑by‑field exact matches (strategy, estimand, variable sets, strategy‑specific fields), plus an overall binary “fully correct” indicator.
    • Estimation scoring: point‑estimate error, relative error, whether predicted estimate lies in gold CI, null‑hypothesis agreement, opposite‑direction flag, CI overlap (Jaccard), SE gap. An auto‑rescaling step can correct unit mismatches before scoring.
  • Baseline results (LLM)
    • High‑level strategy correct: ~79%.
    • Outcomes correctly identified: 93.6%; causal quantity correct: 73.4%.
    • Full identification‑spec correctness: ~34% (showing failures in specifying nuanced elements such as minimal adjustment sets or excluding bad controls).
    • Baseline pipeline used the model to inspect CSV, generate and run Python estimation code, and output schema‑conformant JSON; outputs were validated and scored versus gold labels.
  • Artifacts and availability
    • Gold identification JSONs and reference estimation code (Python/R) for every query.
    • Public release on Hugging Face (dataset link included in the paper).

Data & Methods

  • Data composition
    • Research‑paper subset: 120 queries from 79 papers (large reanalysis corpora for IV, RDD, DiD).
    • Textbook subset: 53 pedagogical examples from three causal‑inference textbooks (adds coverage of conditional exogeneity designs).
    • All datasets supplied as CSV plus metadata files describing columns and study context.
  • Task setup
    • Inputs to agents: natural‑language causal question, CSV dataset, metadata.
    • Required outputs: (1) structured identification JSON per schema; (2) numeric estimate and standard error (with the model optionally producing runnable estimation code).
  • Evaluation machinery
    • Identification evaluator: exact matches on fields; checks that controls are a superset of the gold minimal sufficient adjustment set and that no bad controls are present; strategy‑specific required fields must be correct.
    • Estimation evaluator: compares predicted effect and SE to gold values, computes absolute/relative errors, CI containment and overlap (Jaccard), hypothesis‑test agreement, and SE gaps. Auto‑rescaling option to address unit mismatches.
  • Baseline implementation
    • LLM agent prompted to inspect metadata and CSV, produce the identification JSON, write and run Python estimation code (in a code‑interpreter environment), and return the outputs. Validation and scoring performed automatically.

Implications for AI Economics

  • Diagnostic evaluation sharpens priorities for model development
    • The clear separation of identification vs estimation shows that current LLMs largely manage high‑level strategy recognition and numerical execution, but struggle with the fine‑grained, normative parts of research design (e.g., choosing minimal sufficient adjustment sets, excluding post‑treatment controls). For applied economics, this means improving causal‑reasoning modules (formalizing domain constraints, training on structured designs, integrating causal graphs) should be a priority over estimator automation alone.
  • Standardization and structured outputs aid automation, replication, and auditability
    • A common JSON schema for identification specifications enables tooling that can automatically verify design validity, run standardized estimators, and produce auditable analysis logs—valuable for reproducible empirical economics and policy evaluation.
  • Useful benchmark for agent + econometric library integration
    • The availability of gold estimation scripts and real datasets makes this benchmark a realistic sandbox for agents that combine language models, causal‑inference libraries (DoWhy, econML, statsmodels), and symbolic/graphical causal reasoning. Economists and system builders can use it to test end‑to‑end pipelines while isolating design vs implementation errors.
  • Cautions for automated policy analysis
    • The 34% full‑spec correctness (despite 79% strategy recognition) highlights the risk of relying on LLMs to propose research designs or run causal analyses without human oversight. Small mis‑specifications (including bad controls) can produce biased or misleading estimates—critical in policy contexts.
  • Research and training opportunities
    • The benchmark suggests concrete directions: (i) training models to produce and validate adjustment sets (possibly via causal graphs), (ii) equipping agents with rule‑based checks for bad controls and post‑treatment exclusion, (iii) methods for uncertainty calibration and unit handling, and (iv) human‑in‑the‑loop workflows where models draft designs and researchers verify them.
  • Broader value to economic research
    • By curating real‑world, peer‑reviewed empirical examples (not synthetic problems) the benchmark can accelerate development of trustworthy automation tools for replication studies, education (teaching identification), and scalable reanalysis of applied economics literature—so long as design outputs remain interpretable and auditable.

If you want, I can: - Extract a few illustrative example queries from the benchmark (DiD, RDD, IV) and show the gold identification JSON and typical failure modes observed in the baseline, or - Propose concrete model‑engineering strategies (prompting patterns, verification checks, symbolic/graph modules) to improve identification accuracy for economic applications.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper evaluates a state-of-the-art LLM across a sizable, curated set of 173 real-world queries drawn from 79 peer-reviewed papers and textbooks, providing empirical baselines; however, results depend on the benchmark's curation choices, scoring rubric, and the specific LLM/version tested, limiting strength for broad claims about all automated causal-inference systems. Methods Rigormedium — Curation from peer-reviewed studies and textbooks, separation of identification versus estimation, and public release increase rigor, but the paper likely faces subjectivity in labeling and scoring, potential selection biases in included queries, and limited discussion (in abstract) of inter-rater reliability or robustness checks across scorers and model versions. Sample173 benchmark queries across 132 real-world datasets curated from 79 peer-reviewed research papers and three causal-inference textbooks; each query requires a structured identification specification and a point estimate with standard error; evaluated using a state-of-the-art large language model (baseline results reported); benchmark hosted publicly on Hugging Face. Themeshuman_ai_collab innovation IdentificationThe benchmark requires systems to produce an explicit, structured identification specification that names the causal strategy (e.g., difference-in-differences, instrumental variables, regression discontinuity, matching), the treatment, the outcome, control variables, and any design-specific elements; identification is evaluated separately from numerical estimation. GeneralizabilityCurated from published literature and textbooks; may overrepresent canonical designs and underrepresent messy, nonstandard real-world tasks, Limited to 173 queries — may not cover full diversity of domains, data types, or identification challenges, Performance tied to the specific LLM/version and prompt/instructioning used in baselines, Scoring rubrics and labeler decisions may introduce subjectivity; inter-rater reliability not detailed in abstract, Focuses on identification specification and point estimation; does not test data cleaning, model tuning, sensitivity analyses, or deployed workflows

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Many benchmarks for automated causal inference evaluate a system's performance based on a single numerical output, such as an Average Treatment Effect (ATE). Research Productivity negative use of single numerical output (e.g., ATE) as benchmark metric
Reading fidelity high
Study strength medium
not reported
0.18
This approach conflates two distinct steps in causal analysis: identification - formulating a valid research design under stated assumptions - and estimation - implementing that design numerically on finite data. Decision Quality negative separation between identification and estimation in causal analysis
Reading fidelity high
Study strength medium
not reported
0.18
We introduce CausalReasoningBenchmark, a benchmark of 173 queries across 132 real-world datasets, curated from 79 peer-reviewed research papers and three widely-used causal-inference textbooks. Other positive benchmark size and provenance (number of queries, datasets, source papers/textbooks)
Reading fidelity high
Study strength high
n=173
173 queries across 132 real-world datasets, curated from 79 peer-reviewed research papers and three textbooks
0.3
For each query a system must produce (i) a structured identification specification that names the strategy, the treatment, outcome, and control variables, and all design-specific elements, and (ii) a point estimate with a standard error. Other positive required outputs per query (identification specification and point estimate with SE)
Reading fidelity high
Study strength high
not reported
0.3
By scoring these two components separately, our benchmark enables granular diagnosis: it distinguishes failures in causal reasoning from errors in numerical execution. Decision Quality positive ability to distinguish identification (causal reasoning) failures from estimation (numerical execution) errors
Reading fidelity high
Study strength medium
not reported
0.18
Baseline results with a state of the art LLM show that the model correctly identifies the high-level strategy in 79% of cases. Decision Quality positive high-level strategy identification accuracy
Reading fidelity high
Study strength medium
n=173
79%
0.18
Full identification-specification correctness drops to only 34%, revealing that the bottleneck lies in the nuanced details of research design rather than in computation. Decision Quality negative full identification-specification correctness
Reading fidelity high
Study strength medium
n=173
34%
0.18
CausalReasoningBenchmark is publicly available on Hugging Face and is designed to foster the development of more robust automated causal-inference systems. Adoption Rate positive public availability of benchmark and intended impact on tool development
Reading fidelity high
Study strength high
not reported
0.3

Notes