├── .DS_Store ├── .Rprofile ├── .gitignore ├── DiD_Codes.Rproj ├── Final Code ├── BLL.R ├── DID_Section.R ├── FHLT.R ├── LLZ.R ├── Simulation.R └── aggte_anyF.R ├── README.md ├── renv.lock └── renv ├── .gitignore ├── activate.R └── settings.dcf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/.gitignore -------------------------------------------------------------------------------- /DiD_Codes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/DiD_Codes.Rproj -------------------------------------------------------------------------------- /Final Code/BLL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/BLL.R -------------------------------------------------------------------------------- /Final Code/DID_Section.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/DID_Section.R -------------------------------------------------------------------------------- /Final Code/FHLT.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/FHLT.R -------------------------------------------------------------------------------- /Final Code/LLZ.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/LLZ.R -------------------------------------------------------------------------------- /Final Code/Simulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/Simulation.R -------------------------------------------------------------------------------- /Final Code/aggte_anyF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/Final Code/aggte_anyF.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/README.md -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchbaker/DiD_Codes/HEAD/renv/settings.dcf --------------------------------------------------------------------------------