├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── data.R └── did_imputation.R ├── README.Rmd ├── README.md ├── data ├── df_het.rda └── df_hom.rda ├── dev.R ├── didimputation.Rproj ├── inst ├── CITATION └── references.bib ├── man ├── df_het.Rd ├── df_hom.Rd ├── did_imputation.Rd └── figures │ ├── README-plot-compare-1.png │ ├── README-plot-df-het-1.png │ └── README-plot-es-1.png └── tests ├── testthat.R └── testthat └── test-did_imputation.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: didimputation authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/R/data.R -------------------------------------------------------------------------------- /R/did_imputation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/R/did_imputation.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/README.md -------------------------------------------------------------------------------- /data/df_het.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/data/df_het.rda -------------------------------------------------------------------------------- /data/df_hom.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/data/df_hom.rda -------------------------------------------------------------------------------- /dev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/dev.R -------------------------------------------------------------------------------- /didimputation.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/didimputation.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/inst/references.bib -------------------------------------------------------------------------------- /man/df_het.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/df_het.Rd -------------------------------------------------------------------------------- /man/df_hom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/df_hom.Rd -------------------------------------------------------------------------------- /man/did_imputation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/did_imputation.Rd -------------------------------------------------------------------------------- /man/figures/README-plot-compare-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/figures/README-plot-compare-1.png -------------------------------------------------------------------------------- /man/figures/README-plot-df-het-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/figures/README-plot-df-het-1.png -------------------------------------------------------------------------------- /man/figures/README-plot-es-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/man/figures/README-plot-es-1.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-did_imputation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylebutts/didimputation/HEAD/tests/testthat/test-did_imputation.R --------------------------------------------------------------------------------