-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lpdid
: compute pre-treatment ATT
#268
Comments
I am exploring these new DID methods recently. Maybe I can take this, as well as integrating other prevalent new DID methods into |
That would be fantastic @Wenzhi-Ding! All contributions in this area would be very much appreciated. I'd be open to either integrate new estimators into On the
%load_ext autoreload
%autoreload 2
import pandas as pd
from pyfixest.did.estimation import lpdid, event_study, did2s
url = "https://raw.githubusercontent.com/s3alfisc/pyfixest/master/pyfixest/did/data/df_het.csv"
df_het = pd.read_csv(url)
fit = lpdid(
df_het,
yname="dep_var",
idname="unit",
tname="year",
gname="g",
vcov={"CRV1": "state"},
pre_window=-20,
post_window=20,
att=False
)
fit.tidy().index
#Index(['time_to_treatment::-20', 'time_to_treatment::-19',
# 'time_to_treatment::-18', 'time_to_treatment::-17',
# 'time_to_treatment::-16', 'time_to_treatment::-15',
# 'time_to_treatment::-14', 'time_to_treatment::-13',
# etc while fit = did2s(
df_het,
yname="dep_var",
first_stage="~ 0 | unit + year",
second_stage="~i(rel_year)",
treatment="treat",
cluster="state",
i_ref1=[-1.0, np.inf],
)
fit._coefnames
#['C(rel_year,contr.treatment(base=-1.0))[T.-20.0]',
# 'C(rel_year,contr.treatment(base=-1.0))[T.-19.0]',
# 'C(rel_year,contr.treatment(base=-1.0))[T.-18.0]',
|
This is super informative! I will also think about these issues you mentioned. I also agree that integrating all together makes it easier for researchers to find (a one-stop solution). Abstracting a standard DID class will be super cool and influential. In that way, researchers can quickly verify their results across different models. I am still catching the progress of this literature, so I may not be able to contribute code quickly. But if there is any related discussion on this topic, please do notify me. I am more than willing to engage in the discussion. |
No description provided.
The text was updated successfully, but these errors were encountered: