Synthetic control when the treatment leaks. scspill is a Python package of synthetic control models that drop SUTVA on the donor pool: the treatment is allowed to reach the controls, and every model reports two estimands — the effect on the treated unit, purged of the contamination, and the spillover effect received by each donor, which classical synthetic control cannot express at all.
| Model | method |
Reference | Class | Docs |
|---|---|---|---|---|
| Bayesian spatial-autoregressive spillover SCM | "sar" |
Sakaguchi & Tagawa (2026), The Econometrics Journal | SCSPILL |
sar |
One model ships today. sar routes spillovers through spatial weights you
supply, scaled by a single intensity ρ that is estimated rather than assumed,
fits unconstrained horseshoe-shrunk synthetic weights, and returns full
Bayesian uncertainty for both estimands. At ρ = 0 it collapses exactly to the
Bayesian horseshoe synthetic control.
Three further spillover-aware models — Cao & Dowd, the inclusive SCM of
Di Stefano & Mellace, and the partial-interference SCG of Grossi et al. — are
on the roadmap. They
are not implemented, and SCSPILLConfig rejects their names rather than
falling back silently.
The estimator architecture follows
mlsynth (a pydantic config in, a
standardized results object out), and the method names match its
SPILLSYNTH dispatcher, so the two libraries compose naturally; the
documentation site follows
geometrics.
pip install scspill # NumPy/SciPy sampler backend
pip install "scspill[numba]" # + JIT-compiled samplers (~10x faster)
pip install "scspill @ git+https://github.com/quarcs-lab/scspill.git" # latestPython 3.10+.
from scspill import SCSPILL
from scspill.data import load_california
panel = load_california() # Prop 99 panel + rook-contiguity weights
result = SCSPILL(
{**panel.config_kwargs(), "m_iter": 20_000, "burn": 10_000, "seed": 42}
).fit()
result.att, result.att_ci # treatment effect on California + 95% CrI
result.rho_hat, result.rho_ci # spillover intensity posterior
result.spillover_panel["Nevada"] # the effect received by Nevada, per year
result.diagnostics() # ESS / R-hat / MCSE per chain
result.plot(kind="panel") # counterfactual | effect | top spillovers| Subpackage | What it does | Docs |
|---|---|---|
scspill |
The model layer. SCSPILL(config).fit() — today the sar model's two-step Bayesian sampler (horseshoe synthetic weights, SAR spillover block, adaptive Metropolis for the spillover intensity) and its identification formulas |
Get started |
scspill.validation |
sar's sampler validation: the Geweke (2004) joint distribution test, prior-sensitivity grids, prior predictive checks |
Validation |
scspill.simulate |
sar's Monte Carlo engine: rook-lattice SAR DGP, SCM/BSCM/SCSPILL comparison, the Tables 1–2 grid |
Simulation study |
scspill.data |
The bundled California Prop 99 and Sudan secession spillover panels — model-agnostic, usable by any model added later | Datasets |
The sar model is cross-validated against the authors' R replication
package (python benchmarks/run_benchmarks.py --all --report): California
and Sudan posteriors against the frozen R credible intervals, the Monte
Carlo grid against the paper's frozen Tables 1–2, prior predictive
statistics to three decimals, and the samplers against the Geweke joint
distribution test. The defaults are paper-correct: several documented bugs
of the reference implementation (a covariate memory-layout mismatch, a
missing horseshoe prior, alpha-frozen credible intervals, two incoherent
factor-block conditionals) are fixed here, each with an escape hatch or a
benchmark quantifying the difference — see the
sar model page.
Full documentation, executed tutorials, and the API reference live at
https://quarcs-lab.github.io/scspill/. Machine-readable entry points
for AI agents: llms.txt
and llms-full.txt.
git clone https://github.com/quarcs-lab/scspill && cd scspill
uv sync --all-extras --group dev --group docs
make test # pytest (fast tier; `make test-slow` for the long tier)
make lint # ruff check + format
make typecheck # mypy
make docs # quartodoc build -> quarto render -> llms.txtIf you use scspill, please cite it as (machine-readable metadata lives in
CITATION.cff):
Mendez, C., Sakaguchi, S., & Tagawa, H. (2026). Synthetic Control Models with Spillovers in Python (version 0.2.1). https://github.com/quarcs-lab/scspill
Authors: Carlos Mendez · Shosei Sakaguchi · Hayato Tagawa
The library's design, syntax, and infrastructure are based on Jared
Greathouse's mlsynth, a larger and
more comprehensive package of synthetic control methods. The documentation
stack follows geometrics, from the
QuaRCS lab, where scspill is developed. The
sar model is cross-validated, every release, against the MIT-licensed
replication package for the article
it implements; that package's copyright notice is retained in LICENSE.
MIT
