├── .Rbuildignore ├── .github └── workflows │ └── rhub.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── PanelMatch.Rproj ├── R ├── DisplayTreatment.R ├── PE_helpers.R ├── PanelEstimate.R ├── PanelMatch-package.R ├── PanelMatch.R ├── RcppExports.R ├── balancing_functions.R ├── data.R ├── exact_match.R ├── listwise_delete.R ├── matched_set_R.r ├── matched_set_obj.R └── pm_helpers_r.R ├── README.md ├── data └── dem.rda ├── man ├── DisplayTreatment.Rd ├── PanelEstimate.Rd ├── PanelMatch-package.Rd ├── PanelMatch.Rd ├── balance_scatter.Rd ├── dem.Rd ├── findAllTreated.Rd ├── get.matchedsets.Rd ├── get_covariate_balance.Rd ├── matched_set.Rd ├── plot.PanelEstimate.Rd ├── plot.matched.set.Rd ├── print.matched.set.Rd ├── summary.PanelEstimate.Rd └── summary.matched.set.Rd ├── src ├── Makevars ├── PanelEstimate_helpers.cpp ├── RcppExports.cpp ├── init.c ├── matched_set_helpers.cpp ├── pm_helpers.cpp ├── vector.c └── vector.h ├── tests ├── testthat.R └── testthat │ └── test-PanelMatch.R └── vignettes ├── matched_set_objects.Rmd └── using_panelmatch.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/NAMESPACE -------------------------------------------------------------------------------- /PanelMatch.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/PanelMatch.Rproj -------------------------------------------------------------------------------- /R/DisplayTreatment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/DisplayTreatment.R -------------------------------------------------------------------------------- /R/PE_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/PE_helpers.R -------------------------------------------------------------------------------- /R/PanelEstimate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/PanelEstimate.R -------------------------------------------------------------------------------- /R/PanelMatch-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/PanelMatch-package.R -------------------------------------------------------------------------------- /R/PanelMatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/PanelMatch.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/balancing_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/balancing_functions.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/data.R -------------------------------------------------------------------------------- /R/exact_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/exact_match.R -------------------------------------------------------------------------------- /R/listwise_delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/listwise_delete.R -------------------------------------------------------------------------------- /R/matched_set_R.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/matched_set_R.r -------------------------------------------------------------------------------- /R/matched_set_obj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/matched_set_obj.R -------------------------------------------------------------------------------- /R/pm_helpers_r.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/R/pm_helpers_r.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/README.md -------------------------------------------------------------------------------- /data/dem.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/data/dem.rda -------------------------------------------------------------------------------- /man/DisplayTreatment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/DisplayTreatment.Rd -------------------------------------------------------------------------------- /man/PanelEstimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/PanelEstimate.Rd -------------------------------------------------------------------------------- /man/PanelMatch-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/PanelMatch-package.Rd -------------------------------------------------------------------------------- /man/PanelMatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/PanelMatch.Rd -------------------------------------------------------------------------------- /man/balance_scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/balance_scatter.Rd -------------------------------------------------------------------------------- /man/dem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/dem.Rd -------------------------------------------------------------------------------- /man/findAllTreated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/findAllTreated.Rd -------------------------------------------------------------------------------- /man/get.matchedsets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/get.matchedsets.Rd -------------------------------------------------------------------------------- /man/get_covariate_balance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/get_covariate_balance.Rd -------------------------------------------------------------------------------- /man/matched_set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/matched_set.Rd -------------------------------------------------------------------------------- /man/plot.PanelEstimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/plot.PanelEstimate.Rd -------------------------------------------------------------------------------- /man/plot.matched.set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/plot.matched.set.Rd -------------------------------------------------------------------------------- /man/print.matched.set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/print.matched.set.Rd -------------------------------------------------------------------------------- /man/summary.PanelEstimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/summary.PanelEstimate.Rd -------------------------------------------------------------------------------- /man/summary.matched.set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/man/summary.matched.set.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/PanelEstimate_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/PanelEstimate_helpers.cpp -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/init.c -------------------------------------------------------------------------------- /src/matched_set_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/matched_set_helpers.cpp -------------------------------------------------------------------------------- /src/pm_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/pm_helpers.cpp -------------------------------------------------------------------------------- /src/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/vector.c -------------------------------------------------------------------------------- /src/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/src/vector.h -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-PanelMatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/tests/testthat/test-PanelMatch.R -------------------------------------------------------------------------------- /vignettes/matched_set_objects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/vignettes/matched_set_objects.Rmd -------------------------------------------------------------------------------- /vignettes/using_panelmatch.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insongkim/PanelMatch/HEAD/vignettes/using_panelmatch.Rmd --------------------------------------------------------------------------------