Skip to main content

did_multiplegt_stat

PyPI version Python versions License: GPL v3

Python implementation of the did_multiplegt_stat Stata package by de Chaisemartin, D'Haultfœuille, Pasquier, Sow, and Vazquez-Bare (2024) — heterogeneity-robust difference-in-differences estimators with stayers for binary, discrete, or continuous treatments (and instruments).

The package estimates the Average Slope (AS), Weighted Average Slope (WAS), and IV-WAS parameters in static designs where parallel trends is assumed conditional on the baseline treatment.

Installation

pip install did-multiplegt-stat

Optional extras:

pip install "did-multiplegt-stat[linearmodels]"   # alternative IV backend
pip install "did-multiplegt-stat[docs]"           # build docs locally
pip install "did-multiplegt-stat[dev]"            # tests + tooling

Quick start: default scikit-learn regressions

By default, DIDMultiplegtStat uses scikit-learn's LinearRegression for the outcome-change nuisance function and LogisticRegression for the stayer probability nuisance functions. This is equivalent to setting asinstata=False. The option is written explicitly below so that the backend used by each example is unambiguous.

Example 1: AS and WAS of gasoline taxes on log consumption

Original Stata command:

did_multiplegt_stat lngca id year tau, or(1) estimator(as was) placebo(3) as_vs_was

Python with the default scikit-learn OLS and logit regressions:

# Uncomment this line when running the example in a Jupyter notebook:
# %pip install pandas scikit-learn did-multiplegt-stat

import pandas as pd
from did_multiplegt_stat import DIDMultiplegtStat

data_url = (
    "https://raw.githubusercontent.com/Credible-Answers/"
    "py_did_multiplegt_stat/main/tests/data/gazoline_did_multiplegt_stat.dta"
)
df = pd.read_stata(data_url)

model = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    aoss_vs_waoss=True,
    asinstata=False,  # scikit-learn LinearRegression and LogisticRegression
)
model.fit(df, Y="lngca", ID="id", Time="year", D="tau")
model.summary()
model.plot()

Example 2: AS and WAS with no extrapolation

Original Stata command:

did_multiplegt_stat lngpinc id year tau, or(1) estimator(as was) estimation_method(dr) placebo(3) noextra as_vs_was

Python with the default scikit-learn OLS and logit regressions:

# Uncomment this line when running the example in a Jupyter notebook:
# %pip install pandas scikit-learn did-multiplegt-stat

import pandas as pd
from did_multiplegt_stat import DIDMultiplegtStat

data_url = (
    "https://raw.githubusercontent.com/Credible-Answers/"
    "py_did_multiplegt_stat/main/tests/data/gazoline_did_multiplegt_stat.dta"
)
df = pd.read_stata(data_url)

model = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    noextrapolation=True,  # Stata: noextra
    aoss_vs_waoss=True,
    asinstata=False,  # scikit-learn LinearRegression and LogisticRegression
)
model.fit(df, Y="lngpinc", ID="id", Time="year", D="tau")
model.summary()
model.plot()

Reproducing Stata's OLS and logit results

Set asinstata=True to replace the default scikit-learn nuisance regressions with the Stata-faithful implementations: statsmodels OLS and the package's Newton-Raphson logit matching Stata's logit, asis behavior. The following cell runs both examples with the Stata-faithful backend:

# Uncomment this line when running the example in a Jupyter notebook:
# %pip install pandas scikit-learn did-multiplegt-stat

import pandas as pd
from did_multiplegt_stat import DIDMultiplegtStat

data_url = (
    "https://raw.githubusercontent.com/Credible-Answers/"
    "py_did_multiplegt_stat/main/tests/data/gazoline_did_multiplegt_stat.dta"
)
df = pd.read_stata(data_url)

# Stata-faithful version of Example 1
stata_model_1 = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    aoss_vs_waoss=True,
    asinstata=True,
)
stata_model_1.fit(df, Y="lngca", ID="id", Time="year", D="tau")
stata_model_1.summary()
stata_model_1.plot()

# Stata-faithful version of Example 2
stata_model_2 = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    noextrapolation=True,
    aoss_vs_waoss=True,
    asinstata=True,
)
stata_model_2.fit(df, Y="lngpinc", ID="id", Time="year", D="tau")
stata_model_2.summary()
stata_model_2.plot()

Using machine learning to estimate the nuisance functions

DIDMultiplegtStat accepts custom scikit-learn-style estimators for its nuisance functions. The examples below use a random forest regressor for the outcome-change model and a random forest classifier for the stayer model. Supplying these models overrides the built-in OLS and logit regressions, regardless of the value of asinstata:

# Uncomment this line when running the example in a Jupyter notebook:
# %pip install pandas scikit-learn did-multiplegt-stat

import pandas as pd
from sklearn.ensemble import RandomForestClassifier, RandomForestRegressor

from did_multiplegt_stat import DIDMultiplegtStat

data_url = (
    "https://raw.githubusercontent.com/Credible-Answers/"
    "py_did_multiplegt_stat/main/tests/data/gazoline_did_multiplegt_stat.dta"
)
df = pd.read_stata(data_url)

# Random-forest version of Example 1
ml_model_1 = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    aoss_vs_waoss=True,
    model_deltay=RandomForestRegressor(
        n_estimators=100,
        random_state=42,
    ),
    model_stayer=RandomForestClassifier(
        n_estimators=100,
        random_state=42,
    ),
)
ml_model_1.fit(df, Y="lngca", ID="id", Time="year", D="tau")
ml_model_1.summary()
ml_model_1.plot()

# Random-forest version of Example 2
ml_model_2 = DIDMultiplegtStat(
    estimator=["aoss", "waoss"],
    estimation_method="dr",
    order=1,
    placebo=3,
    noextrapolation=True,
    aoss_vs_waoss=True,
    model_deltay=RandomForestRegressor(
        n_estimators=100,
        random_state=42,
    ),
    model_stayer=RandomForestClassifier(
        n_estimators=100,
        random_state=42,
    ),
)
ml_model_2.fit(df, Y="lngpinc", ID="id", Time="year", D="tau")
ml_model_2.summary()
ml_model_2.plot()

Any compatible estimators may be supplied: model_deltay must implement fit and predict, while model_stayer must implement fit and predict_proba.

Backends: asinstata

Two regression backends are bundled:

Backend When to use Activate
scikit-learn (default) Default behaviour. Faster, modern numerical stack. asinstata=False
Stata-faithful Need byte-for-byte parity with the Stata ado-file. asinstata=True

Stata parity uses statsmodels OLS + a from-scratch Newton-Raphson logit that matches Stata's logit, asis defaults; results agree to ~1e-7 relative error.

What's supported

All Stata options are exposed, including:

  • estimator (aoss / waoss / ivwaoss)
  • estimation_method (ra / ps / dr)
  • order (scalar, 4-tuple, or 8-tuple for IV)
  • placebo(N) (multi-period placebos)
  • exact_match, noextrapolation
  • switchers (up / down)
  • aoss_vs_waoss
  • by, by_fd, by_baseline
  • controls, weight, cluster
  • other_treatments
  • cross_fitting, trimming, on_placebo_sample
  • bootstrap + seed
  • twfe (with same_sample, full_sample, percentile)
  • cross_validation (k-fold CV for polynomial order)

See the full documentation for the help-file style reference.

Citation

If you use this software in academic work, please cite the underlying paper:

de Chaisemartin, C., D'Haultfœuille, X., Pasquier, F., Sow, D., Vazquez-Bare, G. (2024). Difference-in-Differences for Continuous Treatments and Instruments with Stayers. arXiv:2201.06898.

A CITATION.cff is bundled for tooling integration.

License

GPL-3.0-or-later — see LICENSE.

Authors

Originally authored by the team behind the Stata package:

  • Clément de Chaisemartin (Sciences Po)
  • Diego Ciccia (Sciences Po)
  • Xavier D'Haultfœuille (CREST-ENSAE)
  • Felix Knau (Sciences Po)
  • Felix Pasquier (CREST-ENSAE)
  • Doulo Sow (Sciences Po)
  • Gonzalo Vazquez-Bare (UCSB)

Python port: Anzony Quispe.

Contact: chaisemartin.packages@gmail.com

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

did_multiplegt_stat-0.1.1.tar.gz (819.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

did_multiplegt_stat-0.1.1-py3-none-any.whl (71.9 kB view details)

Uploaded Python 3

File details

Details for the file did_multiplegt_stat-0.1.1.tar.gz.

File metadata

  • Download URL: did_multiplegt_stat-0.1.1.tar.gz
  • Upload date:
  • Size: 819.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for did_multiplegt_stat-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a8e909cf58dc64d33a2c58f68b3200245d16acadcfbcf695571aaeb99712d2df
MD5 d47e28beea317376415b10ddffe2110b
BLAKE2b-256 20fafd62a5e1a3b21ea61571896e095e480e786053916926d156588c7535fb8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for did_multiplegt_stat-0.1.1.tar.gz:

Publisher: release.yml on Credible-Answers/py_did_multiplegt_stat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file did_multiplegt_stat-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for did_multiplegt_stat-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 56e2ba38eb06ebdf386493252b92ec98a39afb731d3da90192c467610ca57cc9
MD5 014509f5b96d8c8b93d026ec0812bb9a
BLAKE2b-256 ee7a80f199adcfb12952ed12776c8a85fc7757d7e116585cf942d4321ade1bfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for did_multiplegt_stat-0.1.1-py3-none-any.whl:

Publisher: release.yml on Credible-Answers/py_did_multiplegt_stat

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page