Coding
Check out my main github page to see some of the coding things I’ve been working on lately. I really don’t think of myself as a coder. However, I do try and be resourceful when I come across unsolved problems in my own research. On occasion this can lead me to some unintentional public good provision. I work almost entirely in R, but I have had to make some forays into Julia and Bash scripts.
R Package: “lpdid” written with Alex Cardazzi
- Implements the Local Projections Difference-in-Differences estimator of Dube et al. (2023)
- This package can be installed as follows:
devtools::install_github("alexCardazzi/lpdid")
- And then after installation can be called by:
library(lpdid)
R Package: “staggeredSynthDid” (no longer maintained, better alternatives now exist)
- Implements the Synthetic Difference-in-Differences estimator of Arkhangelsky et al. (2021) for staggered treatment adoption settings (see Porreca (2022))
- This package can be installed as follows:
devtools::install_github("zachporreca/staggered_adoption_synthdid")
- And then after installation can be called by:
library(staggeredSynthDid)