├── .Rbuildignore ├── .Rhistory ├── .github └── workflows │ └── update-citation-cff.yaml ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── NAMESPACE ├── R ├── attgt_functions.R ├── classes.R ├── empirical_bootstrap.R ├── ggpte.R ├── imports.R ├── imputation_functions.R ├── process_att_gt.R ├── pte.R ├── pte_aggte.R ├── pte_params.R ├── startup.R ├── subset_functions.R └── zzz.R ├── README.Rmd ├── README.md ├── docs ├── 404.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── attgt_if.html │ ├── attgt_noif.html │ ├── attgt_pte_aggregations.html │ ├── compute.pte.html │ ├── compute.pte2.html │ ├── did_attgt.html │ ├── figures │ │ ├── README-unnamed-chunk-3-1.png │ │ ├── README-unnamed-chunk-6-1.png │ │ └── README-unnamed-chunk-8-1.png │ ├── ggpte.html │ ├── group_time_att.html │ ├── gt_data_frame.html │ ├── index.html │ ├── mboot2.html │ ├── orig2t.html │ ├── panel_empirical_bootstrap.html │ ├── print.group_time_att.html │ ├── print.pte_results.html │ ├── print.summary.pte_results.html │ ├── process_att_gt.html │ ├── pte.html │ ├── pte2.html │ ├── pte_aggte.html │ ├── pte_attgt.html │ ├── pte_default.html │ ├── pte_emp_boot.html │ ├── pte_params.html │ ├── pte_results.html │ ├── qott_pte_aggregations.html │ ├── qtt_pte_aggregations.html │ ├── setup_pte.html │ ├── setup_pte_basic.html │ ├── summary.group_time_att.html │ ├── summary.pte_emp_boot.html │ ├── summary.pte_results.html │ ├── t2orig.html │ └── two_by_two_subset.html └── sitemap.xml ├── man ├── attgt_if.Rd ├── attgt_noif.Rd ├── attgt_pte_aggregations.Rd ├── compute.pte.Rd ├── compute.pte2.Rd ├── did_attgt.Rd ├── figures │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-8-1.png │ └── logo.png ├── ggpte.Rd ├── group_time_att.Rd ├── gt_data_frame.Rd ├── keep_all_pretreatment_subset.Rd ├── keep_all_untreated_subset.Rd ├── mboot2.Rd ├── panel_empirical_bootstrap.Rd ├── print.group_time_att.Rd ├── print.pte_results.Rd ├── print.summary.pte_results.Rd ├── process_att_gt.Rd ├── pte.Rd ├── pte2.Rd ├── pte_aggte.Rd ├── pte_attgt.Rd ├── pte_default.Rd ├── pte_emp_boot.Rd ├── pte_params.Rd ├── pte_results.Rd ├── qott_pte_aggregations.Rd ├── qtt_pte_aggregations.Rd ├── setup_pte.Rd ├── setup_pte_basic.Rd ├── summary.group_time_att.Rd ├── summary.pte_emp_boot.Rd ├── summary.pte_results.Rd └── two_by_two_subset.Rd ├── pte.Rproj └── tests ├── testthat.R └── testthat ├── test-did-inference.R ├── test-did.R └── testthat-problems.rds /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/.Rhistory -------------------------------------------------------------------------------- /.github/workflows/update-citation-cff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/.github/workflows/update-citation-cff.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/attgt_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/attgt_functions.R -------------------------------------------------------------------------------- /R/classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/classes.R -------------------------------------------------------------------------------- /R/empirical_bootstrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/empirical_bootstrap.R -------------------------------------------------------------------------------- /R/ggpte.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/ggpte.R -------------------------------------------------------------------------------- /R/imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/imports.R -------------------------------------------------------------------------------- /R/imputation_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/imputation_functions.R -------------------------------------------------------------------------------- /R/process_att_gt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/process_att_gt.R -------------------------------------------------------------------------------- /R/pte.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/pte.R -------------------------------------------------------------------------------- /R/pte_aggte.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/pte_aggte.R -------------------------------------------------------------------------------- /R/pte_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/pte_params.R -------------------------------------------------------------------------------- /R/startup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/startup.R -------------------------------------------------------------------------------- /R/subset_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/subset_functions.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/README.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/attgt_if.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/attgt_if.html -------------------------------------------------------------------------------- /docs/reference/attgt_noif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/attgt_noif.html -------------------------------------------------------------------------------- /docs/reference/attgt_pte_aggregations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/attgt_pte_aggregations.html -------------------------------------------------------------------------------- /docs/reference/compute.pte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/compute.pte.html -------------------------------------------------------------------------------- /docs/reference/compute.pte2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/compute.pte2.html -------------------------------------------------------------------------------- /docs/reference/did_attgt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/did_attgt.html -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/reference/ggpte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/ggpte.html -------------------------------------------------------------------------------- /docs/reference/group_time_att.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/group_time_att.html -------------------------------------------------------------------------------- /docs/reference/gt_data_frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/gt_data_frame.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/mboot2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/mboot2.html -------------------------------------------------------------------------------- /docs/reference/orig2t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/orig2t.html -------------------------------------------------------------------------------- /docs/reference/panel_empirical_bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/panel_empirical_bootstrap.html -------------------------------------------------------------------------------- /docs/reference/print.group_time_att.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/print.group_time_att.html -------------------------------------------------------------------------------- /docs/reference/print.pte_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/print.pte_results.html -------------------------------------------------------------------------------- /docs/reference/print.summary.pte_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/print.summary.pte_results.html -------------------------------------------------------------------------------- /docs/reference/process_att_gt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/process_att_gt.html -------------------------------------------------------------------------------- /docs/reference/pte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte.html -------------------------------------------------------------------------------- /docs/reference/pte2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte2.html -------------------------------------------------------------------------------- /docs/reference/pte_aggte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_aggte.html -------------------------------------------------------------------------------- /docs/reference/pte_attgt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_attgt.html -------------------------------------------------------------------------------- /docs/reference/pte_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_default.html -------------------------------------------------------------------------------- /docs/reference/pte_emp_boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_emp_boot.html -------------------------------------------------------------------------------- /docs/reference/pte_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_params.html -------------------------------------------------------------------------------- /docs/reference/pte_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/pte_results.html -------------------------------------------------------------------------------- /docs/reference/qott_pte_aggregations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/qott_pte_aggregations.html -------------------------------------------------------------------------------- /docs/reference/qtt_pte_aggregations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/qtt_pte_aggregations.html -------------------------------------------------------------------------------- /docs/reference/setup_pte.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/setup_pte.html -------------------------------------------------------------------------------- /docs/reference/setup_pte_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/setup_pte_basic.html -------------------------------------------------------------------------------- /docs/reference/summary.group_time_att.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/summary.group_time_att.html -------------------------------------------------------------------------------- /docs/reference/summary.pte_emp_boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/summary.pte_emp_boot.html -------------------------------------------------------------------------------- /docs/reference/summary.pte_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/summary.pte_results.html -------------------------------------------------------------------------------- /docs/reference/t2orig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/t2orig.html -------------------------------------------------------------------------------- /docs/reference/two_by_two_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/reference/two_by_two_subset.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /man/attgt_if.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/attgt_if.Rd -------------------------------------------------------------------------------- /man/attgt_noif.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/attgt_noif.Rd -------------------------------------------------------------------------------- /man/attgt_pte_aggregations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/attgt_pte_aggregations.Rd -------------------------------------------------------------------------------- /man/compute.pte.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/compute.pte.Rd -------------------------------------------------------------------------------- /man/compute.pte2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/compute.pte2.Rd -------------------------------------------------------------------------------- /man/did_attgt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/did_attgt.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/ggpte.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/ggpte.Rd -------------------------------------------------------------------------------- /man/group_time_att.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/group_time_att.Rd -------------------------------------------------------------------------------- /man/gt_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/gt_data_frame.Rd -------------------------------------------------------------------------------- /man/keep_all_pretreatment_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/keep_all_pretreatment_subset.Rd -------------------------------------------------------------------------------- /man/keep_all_untreated_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/keep_all_untreated_subset.Rd -------------------------------------------------------------------------------- /man/mboot2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/mboot2.Rd -------------------------------------------------------------------------------- /man/panel_empirical_bootstrap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/panel_empirical_bootstrap.Rd -------------------------------------------------------------------------------- /man/print.group_time_att.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/print.group_time_att.Rd -------------------------------------------------------------------------------- /man/print.pte_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/print.pte_results.Rd -------------------------------------------------------------------------------- /man/print.summary.pte_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/print.summary.pte_results.Rd -------------------------------------------------------------------------------- /man/process_att_gt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/process_att_gt.Rd -------------------------------------------------------------------------------- /man/pte.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte.Rd -------------------------------------------------------------------------------- /man/pte2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte2.Rd -------------------------------------------------------------------------------- /man/pte_aggte.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_aggte.Rd -------------------------------------------------------------------------------- /man/pte_attgt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_attgt.Rd -------------------------------------------------------------------------------- /man/pte_default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_default.Rd -------------------------------------------------------------------------------- /man/pte_emp_boot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_emp_boot.Rd -------------------------------------------------------------------------------- /man/pte_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_params.Rd -------------------------------------------------------------------------------- /man/pte_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/pte_results.Rd -------------------------------------------------------------------------------- /man/qott_pte_aggregations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/qott_pte_aggregations.Rd -------------------------------------------------------------------------------- /man/qtt_pte_aggregations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/qtt_pte_aggregations.Rd -------------------------------------------------------------------------------- /man/setup_pte.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/setup_pte.Rd -------------------------------------------------------------------------------- /man/setup_pte_basic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/setup_pte_basic.Rd -------------------------------------------------------------------------------- /man/summary.group_time_att.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/summary.group_time_att.Rd -------------------------------------------------------------------------------- /man/summary.pte_emp_boot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/summary.pte_emp_boot.Rd -------------------------------------------------------------------------------- /man/summary.pte_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/summary.pte_results.Rd -------------------------------------------------------------------------------- /man/two_by_two_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/man/two_by_two_subset.Rd -------------------------------------------------------------------------------- /pte.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/pte.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-did-inference.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/tests/testthat/test-did-inference.R -------------------------------------------------------------------------------- /tests/testthat/test-did.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/tests/testthat/test-did.R -------------------------------------------------------------------------------- /tests/testthat/testthat-problems.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcallaway11/pte/HEAD/tests/testthat/testthat-problems.rds --------------------------------------------------------------------------------