├── .Rprofile ├── .github └── workflows │ └── binder.yml ├── .gitignore ├── Makefile ├── NotUsedDockerfile ├── README.md ├── adaptive ├── .DS_Store ├── adaptive.Rmd ├── adaptive.html ├── fig1.png ├── fig2.png └── fig3.png ├── apt.txt ├── causal-inference ├── PO.jpg ├── causal-inference.Rmd ├── causal-inference.html ├── causal-inference_esp.Rmd ├── causal-inference_esp.html ├── causal-inference_fr.Rmd └── causal-inference_fr.html ├── cluster-random ├── .Rprofile ├── archive │ ├── cluster-random.Rmd │ ├── cluster-random.html │ ├── errorplots-1.png │ ├── powerplots-1.png │ └── unnamed-chunk-9-1.png ├── cluster-random.Rmd ├── cluster-random.html ├── cluster-random_esp.Rmd ├── cluster-random_esp.html ├── cluster-random_esp_cache │ └── html │ │ └── __packages ├── cluster-random_esp_files │ └── figure-html │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-25-1.png │ │ ├── unnamed-chunk-26-1.png │ │ ├── unnamed-chunk-27-1.png │ │ └── unnamed-chunk-3-1.png ├── cluster-random_files │ └── figure-html │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-2-2.png │ │ ├── unnamed-chunk-21-1.png │ │ ├── unnamed-chunk-21-2.png │ │ ├── unnamed-chunk-22-1.png │ │ ├── unnamed-chunk-22-2.png │ │ ├── unnamed-chunk-23-1.png │ │ ├── unnamed-chunk-23-2.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-25-1.png │ │ ├── unnamed-chunk-26-1.png │ │ ├── unnamed-chunk-27-1.png │ │ └── unnamed-chunk-3-1.png ├── cluster-random_fr.Rmd ├── cluster-random_fr.html ├── cluster-random_fr_files │ └── figure-html │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-24-1.png │ │ ├── unnamed-chunk-25-1.png │ │ ├── unnamed-chunk-26-1.png │ │ ├── unnamed-chunk-27-1.png │ │ └── unnamed-chunk-3-1.png ├── cluster_random.bib ├── renv.lock └── renv │ ├── .gitignore │ └── activate.R ├── covariates ├── cb.jpg ├── covariates.Rmd ├── covariates.html ├── covariates_esp.Rmd ├── covariates_esp.html ├── covariates_fr.Rmd ├── covariates_fr.html ├── freedman_bias.png ├── freedmanbias.R └── rmse.png ├── design ├── 10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS -- dg edits.docx ├── 10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS.docx ├── 10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_FINAL.docx ├── 10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_dg_wl.docx ├── design.html └── design.rmd ├── effect-types ├── .Rprofile ├── effect-types.Rmd ├── effect-types.html ├── effect-types_esp.Rmd ├── effect-types_esp.html ├── effect-types_fig2.png ├── effect-types_fig2_esp.png ├── effect-types_fr.Rmd ├── effect-types_fr.html ├── renv.lock └── renv │ ├── .gitignore │ └── activate.R ├── environment.yml ├── ethics └── ethics guide v7.docx ├── eval_conversations ├── eval_conversations.Rmd └── eval_conversations.html ├── external-validity ├── 10 Things to Know About External Validity-2 -- wl +dg + gn edits.docx ├── 10 Things to Know About External Validity.docx ├── Sexton_external_validity_outline-2.docx ├── extval.Rmd ├── extval.html ├── extval_esp.Rmd ├── extval_esp.html ├── extval_fr.Rmd └── extval_fr.html ├── hte ├── .gitignore ├── heteffects.Rmd ├── heteffects.html └── heteffects_cache │ └── html │ └── __packages ├── hypothesistesting ├── .Rprofile ├── .gitignore ├── hypothesistesting.Rmd ├── hypothesistesting.Rproj ├── hypothesistesting.bib ├── hypothesistesting.html ├── hypothesistesting_esp.Rmd ├── hypothesistesting_esp.html ├── hypothesistesting_esp_biber.bib ├── hypothesistesting_esp_files │ ├── figure-html │ │ ├── unnamed-chunk-3-1.png │ │ └── unnamed-chunk-7-1.png │ └── figure-latex │ │ ├── unnamed-chunk-3-1.pdf │ │ └── unnamed-chunk-7-1.pdf ├── hypothesistesting_files │ └── figure-html │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-7-1.png │ │ └── unnamed-chunk-8-1.png ├── hypothesistesting_fr.Rmd ├── hypothesistesting_fr.html ├── hypothesistesting_fr_files │ └── figure-html │ │ ├── unnamed-chunk-3-1.png │ │ └── unnamed-chunk-8-1.png ├── renv.lock └── renv │ ├── .gitignore │ └── activate.R ├── implementation ├── .Rhistory ├── EGAPMethodGuide_Implement v5.docx ├── implementation.Rmd ├── implementation.html ├── implementation.pdf ├── implementation_mgmt_structure.png └── trainingdays.jpg ├── index.Rmd ├── index.html ├── late ├── .Rhistory ├── figs │ ├── Table1pvdw.png │ ├── Table2pvdw_0.png │ └── Table3pvdw.png ├── late.Rmd ├── late.html └── late.pdf ├── latex-guide ├── .gitignore ├── 1_structure │ ├── example.tex │ ├── readme.md │ └── refs_example.bib ├── 2_texflavors │ ├── example.tex │ ├── latexmkrc │ ├── plainlatex.tex │ ├── plaintex.tex │ ├── readme.md │ └── refs_example.bib ├── 3_workflows │ ├── a.csv │ ├── paper_randnoise │ │ └── 0_working_draft │ │ │ ├── data │ │ │ └── exp_with_noise.py │ │ │ ├── figures │ │ │ └── exp_with_noise.pdf │ │ │ ├── latexmkrc │ │ │ └── paper_randnoise.tex │ └── readme.md ├── 4_git │ ├── figures │ │ └── exp_with_noise.pdf │ ├── gitignore │ ├── paper_randnoise.tex │ └── readme.md ├── 5_style │ ├── figures │ │ └── exp_with_noise.pdf │ ├── latexmkrc │ ├── paper_randnoise.tex │ ├── readme.md │ ├── refs_randomnoise.bib │ ├── siamart190516.cls │ └── siamplain.bst ├── 6_writing │ ├── example.tex │ ├── figures │ │ └── exp_with_noise.pdf │ ├── readme.md │ └── refs_example.bib ├── 7_dos │ ├── example.tex │ └── readme.md ├── 8_citations │ ├── latexmkrc │ ├── paper_randnoise.tex │ ├── readme.md │ ├── refs_randomnoise.bib │ ├── siamart190516.cls │ └── siamplain.bst ├── 9_figures │ ├── data │ │ ├── common.py │ │ └── exp_with_noise.py │ ├── figures │ │ └── exp_with_noise.pdf │ ├── latexmkrc │ ├── paper_randnoise.tex │ ├── readme.md │ ├── refs_randomnoise.bib │ ├── siamart190516.cls │ └── siamplain.bst ├── README.md ├── apt.txt ├── bad_figure.png ├── bib_structure.png ├── document_structure.png ├── document_structure_compiled.png ├── environment.yml ├── from_tex_to_pdf.png ├── latex-guide-header.html ├── latex-guide-template.html ├── latex-guide.bib ├── latex-guide.css ├── latex-guide.html ├── latex-guide.md └── tabular.png ├── linking_script.html ├── measurement ├── .DS_Store ├── Figure1.pdf ├── Figure2.pdf ├── Figure3.pdf ├── measurement.Rmd ├── measurement.html ├── measurement_esp.Rmd ├── measurement_esp.html ├── measurement_fr.Rmd └── measurement_fr.html ├── mechanisms ├── 10thingsaboutmechanisms.Rmd ├── 10thingsaboutmechanisms.html ├── 10thingsaboutmechanisms_esp.Rmd ├── 10thingsaboutmechanisms_esp.html ├── 10thingsaboutmechanisms_fr.Rmd └── 10thingsaboutmechanisms_fr.html ├── meta-analysis ├── .Rhistory ├── Meta Analysis Calculations Regarding Direct Mail.xls ├── Ten things guide -- meta-analysis.docx ├── Ten things guide -- meta-analysis_MP.docx ├── meta-analysis.Rmd └── meta-analysis.html ├── methods-guides.Rproj ├── methods_inventory.xlsx ├── missing_data ├── missing_data.Rmd └── missing_data.html ├── multiple-comparisons ├── .Rhistory ├── cb.jpg ├── cb.png ├── mc_edits_draft_2.Rmd ├── mc_edits_draft_2.html ├── multiple-comparisons.Rmd ├── multiple-comparisons.html └── multiple-comparisons_fig2.png ├── multisite ├── .Rprofile ├── multisite.Rmd ├── multisite.html ├── refs.bib ├── renv.lock └── renv │ ├── .gitignore │ └── activate.R ├── null ├── null_results.Rmd └── null_results.html ├── pap ├── .DS_Store ├── README.md ├── pap.Rmd ├── pap.bib ├── pap.html ├── pap_esp.Rmd ├── pap_esp.html ├── pap_esp.pdf ├── pap_fr.Rmd └── pap_fr.html ├── pilots ├── 10_things_to_know_about_pilots.Rmd ├── 10_things_to_know_about_pilots.html ├── egap.Rproj └── research_sequence.png ├── postBuild ├── power ├── .Rhistory ├── power.Rmd ├── power.html ├── power_esp.Rmd ├── power_esp.html ├── power_fr.Rmd ├── power_fr.html ├── power_updated_20161221.docx ├── powergraph21.png ├── powergraph21_esp.png ├── simulatedpvals.png └── simulatedpvals_esp.png ├── randomization ├── factorial-table.png ├── factorial-table_esp.png ├── randomization.Rmd ├── randomization.html ├── randomization_esp.Rmd ├── randomization_esp.html ├── randomization_fr.Rmd ├── randomization_fr.html ├── randomizations1.png ├── wait-list-table.png └── wait-list-table_esp.png ├── reg-table ├── .DS_Store ├── .Rhistory ├── Rplot.income.cone.jpg ├── reg-table.Rmd ├── reg-table.html └── reg.png ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.json ├── ri ├── .DS_Store ├── .Rhistory ├── fig1.png ├── ri.Rmd ├── ri.html └── ri.jpg ├── ri2 ├── .Rhistory ├── blocked_dat.csv ├── clustered_dat.csv ├── complete_dat.csv ├── ri2.Rmd ├── ri2.html ├── ri2_10_things_data.R └── three_arm_dat.csv ├── sampling ├── sampling.Rmd ├── sampling.bib └── sampling.html ├── spillovers ├── spilloverbias.jpg ├── spilloverprobabilities.jpg ├── spillovers.Rmd ├── spillovers.html └── spilloversradius.jpg ├── survey_exp ├── conjoint_image.png ├── conjoint_image2.png ├── egap_svyExps.bib ├── svyExps_methods_guide.Rmd ├── svyExps_methods_guide.docx └── svyExps_methods_guide.html ├── workflow ├── .Rhistory ├── metaketa3_Rmarkdown.pdf ├── metaketa3_github.pdf ├── workflow.Rmd └── workflow.html └── x-cause-y ├── dag.png ├── x-cause-y.Rmd ├── x-cause-y.html ├── x-cause-y_esp.Rmd ├── x-cause-y_esp.html ├── x-cause-y_fr.Rmd └── x-cause-y_fr.html /.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /.github/workflows/binder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/.github/workflows/binder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/Makefile -------------------------------------------------------------------------------- /NotUsedDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/NotUsedDockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/README.md -------------------------------------------------------------------------------- /adaptive/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/.DS_Store -------------------------------------------------------------------------------- /adaptive/adaptive.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/adaptive.Rmd -------------------------------------------------------------------------------- /adaptive/adaptive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/adaptive.html -------------------------------------------------------------------------------- /adaptive/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/fig1.png -------------------------------------------------------------------------------- /adaptive/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/fig2.png -------------------------------------------------------------------------------- /adaptive/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/adaptive/fig3.png -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/apt.txt -------------------------------------------------------------------------------- /causal-inference/PO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/PO.jpg -------------------------------------------------------------------------------- /causal-inference/causal-inference.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference.Rmd -------------------------------------------------------------------------------- /causal-inference/causal-inference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference.html -------------------------------------------------------------------------------- /causal-inference/causal-inference_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference_esp.Rmd -------------------------------------------------------------------------------- /causal-inference/causal-inference_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference_esp.html -------------------------------------------------------------------------------- /causal-inference/causal-inference_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference_fr.Rmd -------------------------------------------------------------------------------- /causal-inference/causal-inference_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/causal-inference/causal-inference_fr.html -------------------------------------------------------------------------------- /cluster-random/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /cluster-random/archive/cluster-random.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/archive/cluster-random.Rmd -------------------------------------------------------------------------------- /cluster-random/archive/cluster-random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/archive/cluster-random.html -------------------------------------------------------------------------------- /cluster-random/archive/errorplots-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/archive/errorplots-1.png -------------------------------------------------------------------------------- /cluster-random/archive/powerplots-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/archive/powerplots-1.png -------------------------------------------------------------------------------- /cluster-random/archive/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/archive/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random.Rmd -------------------------------------------------------------------------------- /cluster-random/cluster-random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random.html -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp.Rmd -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp.html -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_cache/html/__packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_cache/html/__packages -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_esp_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-21-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-21-2.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-22-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-22-2.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-23-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-23-2.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr.Rmd -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr.html -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster-random_fr_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /cluster-random/cluster_random.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/cluster_random.bib -------------------------------------------------------------------------------- /cluster-random/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/renv.lock -------------------------------------------------------------------------------- /cluster-random/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/renv/.gitignore -------------------------------------------------------------------------------- /cluster-random/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/cluster-random/renv/activate.R -------------------------------------------------------------------------------- /covariates/cb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/cb.jpg -------------------------------------------------------------------------------- /covariates/covariates.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates.Rmd -------------------------------------------------------------------------------- /covariates/covariates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates.html -------------------------------------------------------------------------------- /covariates/covariates_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates_esp.Rmd -------------------------------------------------------------------------------- /covariates/covariates_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates_esp.html -------------------------------------------------------------------------------- /covariates/covariates_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates_fr.Rmd -------------------------------------------------------------------------------- /covariates/covariates_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/covariates_fr.html -------------------------------------------------------------------------------- /covariates/freedman_bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/freedman_bias.png -------------------------------------------------------------------------------- /covariates/freedmanbias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/freedmanbias.R -------------------------------------------------------------------------------- /covariates/rmse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/covariates/rmse.png -------------------------------------------------------------------------------- /design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS -- dg edits.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS -- dg edits.docx -------------------------------------------------------------------------------- /design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS.docx -------------------------------------------------------------------------------- /design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_FINAL.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_FINAL.docx -------------------------------------------------------------------------------- /design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_dg_wl.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/10 THINGS TO KNOW ABOUT SURVEY DESIGN FOR EXPERIMENTS_dg_wl.docx -------------------------------------------------------------------------------- /design/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/design.html -------------------------------------------------------------------------------- /design/design.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/design/design.rmd -------------------------------------------------------------------------------- /effect-types/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /effect-types/effect-types.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types.Rmd -------------------------------------------------------------------------------- /effect-types/effect-types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types.html -------------------------------------------------------------------------------- /effect-types/effect-types_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_esp.Rmd -------------------------------------------------------------------------------- /effect-types/effect-types_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_esp.html -------------------------------------------------------------------------------- /effect-types/effect-types_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_fig2.png -------------------------------------------------------------------------------- /effect-types/effect-types_fig2_esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_fig2_esp.png -------------------------------------------------------------------------------- /effect-types/effect-types_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_fr.Rmd -------------------------------------------------------------------------------- /effect-types/effect-types_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/effect-types_fr.html -------------------------------------------------------------------------------- /effect-types/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/renv.lock -------------------------------------------------------------------------------- /effect-types/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/renv/.gitignore -------------------------------------------------------------------------------- /effect-types/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/effect-types/renv/activate.R -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/environment.yml -------------------------------------------------------------------------------- /ethics/ethics guide v7.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ethics/ethics guide v7.docx -------------------------------------------------------------------------------- /eval_conversations/eval_conversations.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/eval_conversations/eval_conversations.Rmd -------------------------------------------------------------------------------- /eval_conversations/eval_conversations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/eval_conversations/eval_conversations.html -------------------------------------------------------------------------------- /external-validity/10 Things to Know About External Validity-2 -- wl +dg + gn edits.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/10 Things to Know About External Validity-2 -- wl +dg + gn edits.docx -------------------------------------------------------------------------------- /external-validity/10 Things to Know About External Validity.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/10 Things to Know About External Validity.docx -------------------------------------------------------------------------------- /external-validity/Sexton_external_validity_outline-2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/Sexton_external_validity_outline-2.docx -------------------------------------------------------------------------------- /external-validity/extval.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval.Rmd -------------------------------------------------------------------------------- /external-validity/extval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval.html -------------------------------------------------------------------------------- /external-validity/extval_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval_esp.Rmd -------------------------------------------------------------------------------- /external-validity/extval_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval_esp.html -------------------------------------------------------------------------------- /external-validity/extval_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval_fr.Rmd -------------------------------------------------------------------------------- /external-validity/extval_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/external-validity/extval_fr.html -------------------------------------------------------------------------------- /hte/.gitignore: -------------------------------------------------------------------------------- 1 | *_cache 2 | -------------------------------------------------------------------------------- /hte/heteffects.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hte/heteffects.Rmd -------------------------------------------------------------------------------- /hte/heteffects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hte/heteffects.html -------------------------------------------------------------------------------- /hte/heteffects_cache/html/__packages: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /hypothesistesting/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /hypothesistesting/.gitignore: -------------------------------------------------------------------------------- 1 | *cache 2 | R-dev 3 | -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting.Rmd -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting.Rproj -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting.bib -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting.html -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp.Rmd -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp.html -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp_biber.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp_biber.bib -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp_files/figure-latex/unnamed-chunk-3-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp_files/figure-latex/unnamed-chunk-3-1.pdf -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_esp_files/figure-latex/unnamed-chunk-7-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_esp_files/figure-latex/unnamed-chunk-7-1.pdf -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_fr.Rmd -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_fr.html -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_fr_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_fr_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /hypothesistesting/hypothesistesting_fr_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/hypothesistesting_fr_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /hypothesistesting/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/renv.lock -------------------------------------------------------------------------------- /hypothesistesting/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/renv/.gitignore -------------------------------------------------------------------------------- /hypothesistesting/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/hypothesistesting/renv/activate.R -------------------------------------------------------------------------------- /implementation/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implementation/EGAPMethodGuide_Implement v5.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/EGAPMethodGuide_Implement v5.docx -------------------------------------------------------------------------------- /implementation/implementation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/implementation.Rmd -------------------------------------------------------------------------------- /implementation/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/implementation.html -------------------------------------------------------------------------------- /implementation/implementation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/implementation.pdf -------------------------------------------------------------------------------- /implementation/implementation_mgmt_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/implementation_mgmt_structure.png -------------------------------------------------------------------------------- /implementation/trainingdays.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/implementation/trainingdays.jpg -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/index.html -------------------------------------------------------------------------------- /late/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /late/figs/Table1pvdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/figs/Table1pvdw.png -------------------------------------------------------------------------------- /late/figs/Table2pvdw_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/figs/Table2pvdw_0.png -------------------------------------------------------------------------------- /late/figs/Table3pvdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/figs/Table3pvdw.png -------------------------------------------------------------------------------- /late/late.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/late.Rmd -------------------------------------------------------------------------------- /late/late.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/late.html -------------------------------------------------------------------------------- /late/late.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/late/late.pdf -------------------------------------------------------------------------------- /latex-guide/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .ipynb_checkpoints/ 3 | -------------------------------------------------------------------------------- /latex-guide/1_structure/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/1_structure/example.tex -------------------------------------------------------------------------------- /latex-guide/1_structure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/1_structure/readme.md -------------------------------------------------------------------------------- /latex-guide/1_structure/refs_example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/1_structure/refs_example.bib -------------------------------------------------------------------------------- /latex-guide/2_texflavors/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/2_texflavors/example.tex -------------------------------------------------------------------------------- /latex-guide/2_texflavors/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/2_texflavors/latexmkrc -------------------------------------------------------------------------------- /latex-guide/2_texflavors/plainlatex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/2_texflavors/plainlatex.tex -------------------------------------------------------------------------------- /latex-guide/2_texflavors/plaintex.tex: -------------------------------------------------------------------------------- 1 | This is a test: $x \rightarrow y$ 2 | \bye 3 | -------------------------------------------------------------------------------- /latex-guide/2_texflavors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/2_texflavors/readme.md -------------------------------------------------------------------------------- /latex-guide/2_texflavors/refs_example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/2_texflavors/refs_example.bib -------------------------------------------------------------------------------- /latex-guide/3_workflows/a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/a.csv -------------------------------------------------------------------------------- /latex-guide/3_workflows/paper_randnoise/0_working_draft/data/exp_with_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/paper_randnoise/0_working_draft/data/exp_with_noise.py -------------------------------------------------------------------------------- /latex-guide/3_workflows/paper_randnoise/0_working_draft/figures/exp_with_noise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/paper_randnoise/0_working_draft/figures/exp_with_noise.pdf -------------------------------------------------------------------------------- /latex-guide/3_workflows/paper_randnoise/0_working_draft/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/paper_randnoise/0_working_draft/latexmkrc -------------------------------------------------------------------------------- /latex-guide/3_workflows/paper_randnoise/0_working_draft/paper_randnoise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/paper_randnoise/0_working_draft/paper_randnoise.tex -------------------------------------------------------------------------------- /latex-guide/3_workflows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/3_workflows/readme.md -------------------------------------------------------------------------------- /latex-guide/4_git/figures/exp_with_noise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/4_git/figures/exp_with_noise.pdf -------------------------------------------------------------------------------- /latex-guide/4_git/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/4_git/gitignore -------------------------------------------------------------------------------- /latex-guide/4_git/paper_randnoise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/4_git/paper_randnoise.tex -------------------------------------------------------------------------------- /latex-guide/4_git/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/4_git/readme.md -------------------------------------------------------------------------------- /latex-guide/5_style/figures/exp_with_noise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/figures/exp_with_noise.pdf -------------------------------------------------------------------------------- /latex-guide/5_style/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/latexmkrc -------------------------------------------------------------------------------- /latex-guide/5_style/paper_randnoise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/paper_randnoise.tex -------------------------------------------------------------------------------- /latex-guide/5_style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/readme.md -------------------------------------------------------------------------------- /latex-guide/5_style/refs_randomnoise.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/refs_randomnoise.bib -------------------------------------------------------------------------------- /latex-guide/5_style/siamart190516.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/siamart190516.cls -------------------------------------------------------------------------------- /latex-guide/5_style/siamplain.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/5_style/siamplain.bst -------------------------------------------------------------------------------- /latex-guide/6_writing/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/6_writing/example.tex -------------------------------------------------------------------------------- /latex-guide/6_writing/figures/exp_with_noise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/6_writing/figures/exp_with_noise.pdf -------------------------------------------------------------------------------- /latex-guide/6_writing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/6_writing/readme.md -------------------------------------------------------------------------------- /latex-guide/6_writing/refs_example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/6_writing/refs_example.bib -------------------------------------------------------------------------------- /latex-guide/7_dos/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/7_dos/example.tex -------------------------------------------------------------------------------- /latex-guide/7_dos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/7_dos/readme.md -------------------------------------------------------------------------------- /latex-guide/8_citations/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/latexmkrc -------------------------------------------------------------------------------- /latex-guide/8_citations/paper_randnoise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/paper_randnoise.tex -------------------------------------------------------------------------------- /latex-guide/8_citations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/readme.md -------------------------------------------------------------------------------- /latex-guide/8_citations/refs_randomnoise.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/refs_randomnoise.bib -------------------------------------------------------------------------------- /latex-guide/8_citations/siamart190516.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/siamart190516.cls -------------------------------------------------------------------------------- /latex-guide/8_citations/siamplain.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/8_citations/siamplain.bst -------------------------------------------------------------------------------- /latex-guide/9_figures/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/data/common.py -------------------------------------------------------------------------------- /latex-guide/9_figures/data/exp_with_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/data/exp_with_noise.py -------------------------------------------------------------------------------- /latex-guide/9_figures/figures/exp_with_noise.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/figures/exp_with_noise.pdf -------------------------------------------------------------------------------- /latex-guide/9_figures/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/latexmkrc -------------------------------------------------------------------------------- /latex-guide/9_figures/paper_randnoise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/paper_randnoise.tex -------------------------------------------------------------------------------- /latex-guide/9_figures/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/readme.md -------------------------------------------------------------------------------- /latex-guide/9_figures/refs_randomnoise.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/refs_randomnoise.bib -------------------------------------------------------------------------------- /latex-guide/9_figures/siamart190516.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/siamart190516.cls -------------------------------------------------------------------------------- /latex-guide/9_figures/siamplain.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/9_figures/siamplain.bst -------------------------------------------------------------------------------- /latex-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/README.md -------------------------------------------------------------------------------- /latex-guide/apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/apt.txt -------------------------------------------------------------------------------- /latex-guide/bad_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/bad_figure.png -------------------------------------------------------------------------------- /latex-guide/bib_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/bib_structure.png -------------------------------------------------------------------------------- /latex-guide/document_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/document_structure.png -------------------------------------------------------------------------------- /latex-guide/document_structure_compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/document_structure_compiled.png -------------------------------------------------------------------------------- /latex-guide/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/environment.yml -------------------------------------------------------------------------------- /latex-guide/from_tex_to_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/from_tex_to_pdf.png -------------------------------------------------------------------------------- /latex-guide/latex-guide-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide-header.html -------------------------------------------------------------------------------- /latex-guide/latex-guide-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide-template.html -------------------------------------------------------------------------------- /latex-guide/latex-guide.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide.bib -------------------------------------------------------------------------------- /latex-guide/latex-guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide.css -------------------------------------------------------------------------------- /latex-guide/latex-guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide.html -------------------------------------------------------------------------------- /latex-guide/latex-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/latex-guide.md -------------------------------------------------------------------------------- /latex-guide/tabular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/latex-guide/tabular.png -------------------------------------------------------------------------------- /linking_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/linking_script.html -------------------------------------------------------------------------------- /measurement/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/.DS_Store -------------------------------------------------------------------------------- /measurement/Figure1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/Figure1.pdf -------------------------------------------------------------------------------- /measurement/Figure2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/Figure2.pdf -------------------------------------------------------------------------------- /measurement/Figure3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/Figure3.pdf -------------------------------------------------------------------------------- /measurement/measurement.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement.Rmd -------------------------------------------------------------------------------- /measurement/measurement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement.html -------------------------------------------------------------------------------- /measurement/measurement_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement_esp.Rmd -------------------------------------------------------------------------------- /measurement/measurement_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement_esp.html -------------------------------------------------------------------------------- /measurement/measurement_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement_fr.Rmd -------------------------------------------------------------------------------- /measurement/measurement_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/measurement/measurement_fr.html -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms.Rmd -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms.html -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms_esp.Rmd -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms_esp.html -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms_fr.Rmd -------------------------------------------------------------------------------- /mechanisms/10thingsaboutmechanisms_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/mechanisms/10thingsaboutmechanisms_fr.html -------------------------------------------------------------------------------- /meta-analysis/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta-analysis/Meta Analysis Calculations Regarding Direct Mail.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/meta-analysis/Meta Analysis Calculations Regarding Direct Mail.xls -------------------------------------------------------------------------------- /meta-analysis/Ten things guide -- meta-analysis.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/meta-analysis/Ten things guide -- meta-analysis.docx -------------------------------------------------------------------------------- /meta-analysis/Ten things guide -- meta-analysis_MP.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/meta-analysis/Ten things guide -- meta-analysis_MP.docx -------------------------------------------------------------------------------- /meta-analysis/meta-analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/meta-analysis/meta-analysis.Rmd -------------------------------------------------------------------------------- /meta-analysis/meta-analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/meta-analysis/meta-analysis.html -------------------------------------------------------------------------------- /methods-guides.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/methods-guides.Rproj -------------------------------------------------------------------------------- /methods_inventory.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/methods_inventory.xlsx -------------------------------------------------------------------------------- /missing_data/missing_data.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/missing_data/missing_data.Rmd -------------------------------------------------------------------------------- /missing_data/missing_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/missing_data/missing_data.html -------------------------------------------------------------------------------- /multiple-comparisons/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/.Rhistory -------------------------------------------------------------------------------- /multiple-comparisons/cb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/cb.jpg -------------------------------------------------------------------------------- /multiple-comparisons/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/cb.png -------------------------------------------------------------------------------- /multiple-comparisons/mc_edits_draft_2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/mc_edits_draft_2.Rmd -------------------------------------------------------------------------------- /multiple-comparisons/mc_edits_draft_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/mc_edits_draft_2.html -------------------------------------------------------------------------------- /multiple-comparisons/multiple-comparisons.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/multiple-comparisons.Rmd -------------------------------------------------------------------------------- /multiple-comparisons/multiple-comparisons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/multiple-comparisons.html -------------------------------------------------------------------------------- /multiple-comparisons/multiple-comparisons_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multiple-comparisons/multiple-comparisons_fig2.png -------------------------------------------------------------------------------- /multisite/.Rprofile: -------------------------------------------------------------------------------- 1 | source("renv/activate.R") 2 | -------------------------------------------------------------------------------- /multisite/multisite.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/multisite.Rmd -------------------------------------------------------------------------------- /multisite/multisite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/multisite.html -------------------------------------------------------------------------------- /multisite/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/refs.bib -------------------------------------------------------------------------------- /multisite/renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/renv.lock -------------------------------------------------------------------------------- /multisite/renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/renv/.gitignore -------------------------------------------------------------------------------- /multisite/renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/multisite/renv/activate.R -------------------------------------------------------------------------------- /null/null_results.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/null/null_results.Rmd -------------------------------------------------------------------------------- /null/null_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/null/null_results.html -------------------------------------------------------------------------------- /pap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/.DS_Store -------------------------------------------------------------------------------- /pap/README.md: -------------------------------------------------------------------------------- 1 | # pap -------------------------------------------------------------------------------- /pap/pap.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap.Rmd -------------------------------------------------------------------------------- /pap/pap.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap.bib -------------------------------------------------------------------------------- /pap/pap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap.html -------------------------------------------------------------------------------- /pap/pap_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap_esp.Rmd -------------------------------------------------------------------------------- /pap/pap_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap_esp.html -------------------------------------------------------------------------------- /pap/pap_esp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap_esp.pdf -------------------------------------------------------------------------------- /pap/pap_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap_fr.Rmd -------------------------------------------------------------------------------- /pap/pap_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pap/pap_fr.html -------------------------------------------------------------------------------- /pilots/10_things_to_know_about_pilots.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pilots/10_things_to_know_about_pilots.Rmd -------------------------------------------------------------------------------- /pilots/10_things_to_know_about_pilots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pilots/10_things_to_know_about_pilots.html -------------------------------------------------------------------------------- /pilots/egap.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pilots/egap.Rproj -------------------------------------------------------------------------------- /pilots/research_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/pilots/research_sequence.png -------------------------------------------------------------------------------- /postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/postBuild -------------------------------------------------------------------------------- /power/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/.Rhistory -------------------------------------------------------------------------------- /power/power.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power.Rmd -------------------------------------------------------------------------------- /power/power.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power.html -------------------------------------------------------------------------------- /power/power_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power_esp.Rmd -------------------------------------------------------------------------------- /power/power_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power_esp.html -------------------------------------------------------------------------------- /power/power_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power_fr.Rmd -------------------------------------------------------------------------------- /power/power_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power_fr.html -------------------------------------------------------------------------------- /power/power_updated_20161221.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/power_updated_20161221.docx -------------------------------------------------------------------------------- /power/powergraph21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/powergraph21.png -------------------------------------------------------------------------------- /power/powergraph21_esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/powergraph21_esp.png -------------------------------------------------------------------------------- /power/simulatedpvals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/simulatedpvals.png -------------------------------------------------------------------------------- /power/simulatedpvals_esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/power/simulatedpvals_esp.png -------------------------------------------------------------------------------- /randomization/factorial-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/factorial-table.png -------------------------------------------------------------------------------- /randomization/factorial-table_esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/factorial-table_esp.png -------------------------------------------------------------------------------- /randomization/randomization.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization.Rmd -------------------------------------------------------------------------------- /randomization/randomization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization.html -------------------------------------------------------------------------------- /randomization/randomization_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization_esp.Rmd -------------------------------------------------------------------------------- /randomization/randomization_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization_esp.html -------------------------------------------------------------------------------- /randomization/randomization_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization_fr.Rmd -------------------------------------------------------------------------------- /randomization/randomization_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomization_fr.html -------------------------------------------------------------------------------- /randomization/randomizations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/randomizations1.png -------------------------------------------------------------------------------- /randomization/wait-list-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/wait-list-table.png -------------------------------------------------------------------------------- /randomization/wait-list-table_esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/randomization/wait-list-table_esp.png -------------------------------------------------------------------------------- /reg-table/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/.DS_Store -------------------------------------------------------------------------------- /reg-table/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/.Rhistory -------------------------------------------------------------------------------- /reg-table/Rplot.income.cone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/Rplot.income.cone.jpg -------------------------------------------------------------------------------- /reg-table/reg-table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/reg-table.Rmd -------------------------------------------------------------------------------- /reg-table/reg-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/reg-table.html -------------------------------------------------------------------------------- /reg-table/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/reg-table/reg.png -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/renv/settings.json -------------------------------------------------------------------------------- /ri/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri/.DS_Store -------------------------------------------------------------------------------- /ri/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ri/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri/fig1.png -------------------------------------------------------------------------------- /ri/ri.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri/ri.Rmd -------------------------------------------------------------------------------- /ri/ri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri/ri.html -------------------------------------------------------------------------------- /ri/ri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri/ri.jpg -------------------------------------------------------------------------------- /ri2/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ri2/blocked_dat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/blocked_dat.csv -------------------------------------------------------------------------------- /ri2/clustered_dat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/clustered_dat.csv -------------------------------------------------------------------------------- /ri2/complete_dat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/complete_dat.csv -------------------------------------------------------------------------------- /ri2/ri2.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/ri2.Rmd -------------------------------------------------------------------------------- /ri2/ri2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/ri2.html -------------------------------------------------------------------------------- /ri2/ri2_10_things_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/ri2_10_things_data.R -------------------------------------------------------------------------------- /ri2/three_arm_dat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/ri2/three_arm_dat.csv -------------------------------------------------------------------------------- /sampling/sampling.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/sampling/sampling.Rmd -------------------------------------------------------------------------------- /sampling/sampling.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/sampling/sampling.bib -------------------------------------------------------------------------------- /sampling/sampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/sampling/sampling.html -------------------------------------------------------------------------------- /spillovers/spilloverbias.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/spillovers/spilloverbias.jpg -------------------------------------------------------------------------------- /spillovers/spilloverprobabilities.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/spillovers/spilloverprobabilities.jpg -------------------------------------------------------------------------------- /spillovers/spillovers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/spillovers/spillovers.Rmd -------------------------------------------------------------------------------- /spillovers/spillovers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/spillovers/spillovers.html -------------------------------------------------------------------------------- /spillovers/spilloversradius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/spillovers/spilloversradius.jpg -------------------------------------------------------------------------------- /survey_exp/conjoint_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/conjoint_image.png -------------------------------------------------------------------------------- /survey_exp/conjoint_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/conjoint_image2.png -------------------------------------------------------------------------------- /survey_exp/egap_svyExps.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/egap_svyExps.bib -------------------------------------------------------------------------------- /survey_exp/svyExps_methods_guide.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/svyExps_methods_guide.Rmd -------------------------------------------------------------------------------- /survey_exp/svyExps_methods_guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/svyExps_methods_guide.docx -------------------------------------------------------------------------------- /survey_exp/svyExps_methods_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/survey_exp/svyExps_methods_guide.html -------------------------------------------------------------------------------- /workflow/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/metaketa3_Rmarkdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/workflow/metaketa3_Rmarkdown.pdf -------------------------------------------------------------------------------- /workflow/metaketa3_github.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/workflow/metaketa3_github.pdf -------------------------------------------------------------------------------- /workflow/workflow.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/workflow/workflow.Rmd -------------------------------------------------------------------------------- /workflow/workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/workflow/workflow.html -------------------------------------------------------------------------------- /x-cause-y/dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/dag.png -------------------------------------------------------------------------------- /x-cause-y/x-cause-y.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y.Rmd -------------------------------------------------------------------------------- /x-cause-y/x-cause-y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y.html -------------------------------------------------------------------------------- /x-cause-y/x-cause-y_esp.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y_esp.Rmd -------------------------------------------------------------------------------- /x-cause-y/x-cause-y_esp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y_esp.html -------------------------------------------------------------------------------- /x-cause-y/x-cause-y_fr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y_fr.Rmd -------------------------------------------------------------------------------- /x-cause-y/x-cause-y_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egap/methods-guides/HEAD/x-cause-y/x-cause-y_fr.html --------------------------------------------------------------------------------