├── .gitignore ├── README.Rmd ├── README.md ├── ado ├── df_het.dta ├── df_hom.dta ├── did2s.ado ├── did2s.pkg ├── did2s.sthlp └── stata.toc ├── data ├── df_het.dta └── df_hom.dta ├── development.do ├── did2s_stata.Rproj ├── example.do ├── example_bootstrap.do ├── man ├── did2s.Rd ├── figures │ ├── README-plot-df-het-1.png │ ├── README-plot-es-1.png │ ├── es.png │ ├── resid.png │ ├── twfe.png │ └── twfe_count.png ├── gen_data.Rd └── pipe.Rd └── references.bib /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .Rproj.user 3 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/README.md -------------------------------------------------------------------------------- /ado/df_het.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/df_het.dta -------------------------------------------------------------------------------- /ado/df_hom.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/df_hom.dta -------------------------------------------------------------------------------- /ado/did2s.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/did2s.ado -------------------------------------------------------------------------------- /ado/did2s.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/did2s.pkg -------------------------------------------------------------------------------- /ado/did2s.sthlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/did2s.sthlp -------------------------------------------------------------------------------- /ado/stata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/ado/stata.toc -------------------------------------------------------------------------------- /data/df_het.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/data/df_het.dta -------------------------------------------------------------------------------- /data/df_hom.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/data/df_hom.dta -------------------------------------------------------------------------------- /development.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/development.do -------------------------------------------------------------------------------- /did2s_stata.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/did2s_stata.Rproj -------------------------------------------------------------------------------- /example.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/example.do -------------------------------------------------------------------------------- /example_bootstrap.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/example_bootstrap.do -------------------------------------------------------------------------------- /man/did2s.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/did2s.Rd -------------------------------------------------------------------------------- /man/figures/README-plot-df-het-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/README-plot-df-het-1.png -------------------------------------------------------------------------------- /man/figures/README-plot-es-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/README-plot-es-1.png -------------------------------------------------------------------------------- /man/figures/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/es.png -------------------------------------------------------------------------------- /man/figures/resid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/resid.png -------------------------------------------------------------------------------- /man/figures/twfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/twfe.png -------------------------------------------------------------------------------- /man/figures/twfe_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/figures/twfe_count.png -------------------------------------------------------------------------------- /man/gen_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/gen_data.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/did2s_stata/HEAD/references.bib --------------------------------------------------------------------------------