├── .DS_Store ├── .Rprofile ├── .gitignore ├── Code ├── 1a. Simulations - Save Data.R ├── 1b. TWFE + binary DiD.R ├── 1c. Alternative Estimators.R ├── 1d. Goodman-Bacom Decomp.R ├── 1e. Alternative Event Study Estimators.R ├── 1f. Rejections.R ├── 1g. Failures With Event Studies and Heterogeneity.R ├── 2. BLL.R └── 3. FHLT.R ├── JFE_DID.Rproj ├── README.html ├── README.md ├── renv.lock └── renv ├── .gitignore ├── activate.R └── settings.dcf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/1a. Simulations - Save Data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1a. Simulations - Save Data.R -------------------------------------------------------------------------------- /Code/1b. TWFE + binary DiD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1b. TWFE + binary DiD.R -------------------------------------------------------------------------------- /Code/1c. Alternative Estimators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1c. Alternative Estimators.R -------------------------------------------------------------------------------- /Code/1d. Goodman-Bacom Decomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1d. Goodman-Bacom Decomp.R -------------------------------------------------------------------------------- /Code/1e. Alternative Event Study Estimators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1e. Alternative Event Study Estimators.R -------------------------------------------------------------------------------- /Code/1f. Rejections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1f. Rejections.R -------------------------------------------------------------------------------- /Code/1g. Failures With Event Studies and Heterogeneity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/1g. Failures With Event Studies and Heterogeneity.R -------------------------------------------------------------------------------- /Code/2. BLL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/2. BLL.R -------------------------------------------------------------------------------- /Code/3. FHLT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/Code/3. FHLT.R -------------------------------------------------------------------------------- /JFE_DID.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/JFE_DID.Rproj -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/README.md -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/JFE_DID/HEAD/renv/settings.dcf --------------------------------------------------------------------------------