https://github.com/bcallaway11/drdid
Doubly Robust Difference-in-Differences Estimators
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 4 DOI reference(s) in README -
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (18.2%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Doubly Robust Difference-in-Differences Estimators
Basic Info
- Host: GitHub
- Owner: bcallaway11
- Language: R
- Default Branch: master
- Homepage: https://pedrohcgs.github.io/DRDID
- Size: 2.14 MB
Statistics
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Fork of pedrohcgs/DRDID
Created about 4 years ago
· Last pushed over 3 years ago
https://github.com/bcallaway11/DRDID/blob/master/
# Doubly Robust Difference-in-Differences[](https://CRAN.R-project.org/package=DRDID) [](https://app.codecov.io/gh/pedrohcgs/DRDID?branch=master) [](https://github.com/pedrohcgs/DRDID/actions) The `DRDID` R package implements different estimators for the Average Treatment Effect on the Treated (ATT) in Difference-in-Differences (DID) setups where the parallel trends assumption holds after conditioning on a vector of pre-treatment covariates. The main estimators implemented here are the locally efficient, doubly-robust DID estimators proposed by [Sant'Anna and Zhao (2020), Doubly Robust Difference-in-Differences Estimators](https://doi.org/10.1016/j.jeconom.2020.06.003). The package covers both panel data and repeated cross-section data setups with two treatment groups (treated and comparison group) and two time periods (pre-treatment and post-treatment). See the [package manual](https://psantanna.com/DRDID/reference/index.html) for documentation of all package functions (with examples). If you end up using this package, please cite our paper: * Sant'Anna, Pedro H. C., and Zhao, Jun (2020), ["Doubly Robust Difference-in-Differences Estimators"](https://doi.org/10.1016/j.jeconom.2020.06.003), *Journal of Econometrics*, Vol. 219 (1), pp. 101-122. ## Installation To install the most recent version of the `DRDID` package from GitHub: ``` r # install.packages("remotes") remotes::install_github("pedrohcgs/DRDID") ``` ## Short example The following is a portion of the empirical illustration considered by Sant'Anna and Zhao (2020) that uses the LaLonde sample from the NSW experiment and considers data from the Current Population Survey (CPS) to form a non-experimental comparison group. Let's first get the data ready: ``` r library(DRDID) # Load data in long format that comes in the DRDID package data(nsw_long) # Form the Lalonde sample with CPS comparison group eval_lalonde_cps <- subset(nsw_long, nsw_long$treated == 0 | nsw_long$sample == 2) ``` Now, to estimate the ATT using the Improved Locally Efficient Doubly Robust DID estimator, we can use the **drdid** function: ```{r} # Implement improved locally efficient DR DID: out <- drdid(yname = "re", tname = "year", idname = "id", dname = "experimental", xformla= ~ age + educ + black + married + nodegree + hisp + re74, data = eval_lalonde_cps, panel = TRUE) summary(out) ``` For additional details on the usage of the **drdid** function, see [check the manual](https://psantanna.com/DRDID/reference/drdid.html). To implement IPW and outcome regression DID estimators, check [here](https://psantanna.com/DRDID/reference/ipwdid.html) and [here](https://psantanna.com/DRDID/reference/ordid.html), respectively.
Owner
- Login: bcallaway11
- Kind: user
- Location: Athens, GA
- Company: University of Georgia
- Website: www.brantlycallaway.com
- Repositories: 23
- Profile: https://github.com/bcallaway11
Brantly Callaway, Department of Economics, University of Georgia
[](https://CRAN.R-project.org/package=DRDID)
[](https://app.codecov.io/gh/pedrohcgs/DRDID?branch=master)
[](https://github.com/pedrohcgs/DRDID/actions)
The `DRDID` R package implements different estimators for the Average Treatment Effect on the Treated (ATT) in Difference-in-Differences (DID) setups where the parallel trends assumption holds after conditioning on a vector of pre-treatment covariates.
The main estimators implemented here are the locally efficient, doubly-robust DID estimators proposed by [Sant'Anna and Zhao (2020), Doubly Robust Difference-in-Differences Estimators](https://doi.org/10.1016/j.jeconom.2020.06.003). The package covers both panel data and repeated cross-section data setups with two treatment groups (treated and comparison group) and two time periods (pre-treatment and post-treatment).
See the [package manual](https://psantanna.com/DRDID/reference/index.html) for documentation of all package functions (with examples).
If you end up using this package, please cite our paper:
* Sant'Anna, Pedro H. C., and Zhao, Jun (2020), ["Doubly Robust Difference-in-Differences Estimators"](https://doi.org/10.1016/j.jeconom.2020.06.003), *Journal of Econometrics*, Vol. 219 (1), pp. 101-122.
## Installation
To install the most recent version of the `DRDID` package from GitHub:
``` r
# install.packages("remotes")
remotes::install_github("pedrohcgs/DRDID")
```
## Short example
The following is a portion of the empirical illustration considered by Sant'Anna and Zhao (2020)
that uses the LaLonde sample from the NSW experiment and considers data from the Current Population Survey (CPS) to form a non-experimental comparison group.
Let's first get the data ready:
``` r
library(DRDID)
# Load data in long format that comes in the DRDID package
data(nsw_long)
# Form the Lalonde sample with CPS comparison group
eval_lalonde_cps <- subset(nsw_long, nsw_long$treated == 0 | nsw_long$sample == 2)
```
Now, to estimate the ATT using the Improved Locally Efficient Doubly Robust DID estimator, we can use the **drdid** function:
```{r}
# Implement improved locally efficient DR DID:
out <- drdid(yname = "re", tname = "year", idname = "id", dname = "experimental",
xformla= ~ age + educ + black + married + nodegree + hisp + re74,
data = eval_lalonde_cps, panel = TRUE)
summary(out)
```
For additional details on the usage of the **drdid** function, see [check the manual](https://psantanna.com/DRDID/reference/drdid.html).
To implement IPW and outcome regression DID estimators, check [here](https://psantanna.com/DRDID/reference/ipwdid.html) and [here](https://psantanna.com/DRDID/reference/ordid.html), respectively.