Empirical distribution functions; resampling and nonparametric statistical inference; optimality of the bootstrap; bootstrap in hypothesis testing; bootstrap in confidence intervals; bootstrap in regression models; bootstrap for dependent data. Prereq: Stat 222/232 and Stat 223/equiv. 3u.
.
├── .Rhistory
├── .Rprofile
├── .gitignore
├── README.Rmd
├── README.md
├── common
│ ├── harvard-educational-review.csl
│ └── ref.bib
├── lectures
│ ├── 00_lecture_notes.Rmd
│ ├── 00_lecture_notes.md
│ ├── 00_syllabus_252.pdf
│ ├── 01_lecture_notes.Rmd
│ ├── 02_lecture_notes.Rmd
│ ├── 02_regression.pdf
│ ├── 03_bias.pdf
│ ├── 04_bootstrap_t.pdf
│ ├── bs_calib.Rmd
│ ├── datasets
│ │ ├── admission.csv
│ │ ├── copper.csv
│ │ ├── gfr.csv
│ │ ├── patch.csv
│ │ └── tablets.csv
│ └── image.jpg
├── problems
│ ├── midterm
│ │ ├── datasets
│ │ │ └── fishery.csv
│ │ └── midterm.pdf
│ ├── ps_01
│ │ ├── datasets
│ │ │ ├── law_school_data.RData
│ │ │ └── researcher_salary.RData
│ │ └── ps_01.pdf
│ └── ps_02
│ ├── datasets
│ │ └── spatial_test_data.RData
│ └── ps_02.pdf
├── s01_i0_load.R
└── solutions
├── midterm
│ ├── R
│ │ ├── 01_00_load_data.R
│ │ ├── 01_01_se_estimate.R
│ │ ├── 02_00_load_data.R
│ │ ├── 02_01_stable.R
│ │ └── 02_02_se_estimate.R
│ ├── child
│ │ ├── appendix.Rmd
│ │ ├── item_01.Rmd
│ │ └── item_02.Rmd
│ ├── submission.Rmd
│ └── submission.pdf
├── ps_01
│ ├── R
│ │ ├── s01_i01_load_data.R
│ │ ├── s01_i02_alpha_quantile.R
│ │ ├── s01_i03_load_data.R
│ │ ├── s02_i01_bs_sampling.R
│ │ ├── s02_i02_se.R
│ │ ├── s02_i03_reg.R
│ │ ├── s03_i01_max_value.R
│ │ ├── s03_i02_replace.R
│ │ └── s04_i03_ratio.R
│ ├── child
│ │ ├── appendix.Rmd
│ │ ├── item_01.Rmd
│ │ ├── item_02.Rmd
│ │ └── item_03.Rmd
│ ├── submission.Rmd
│ └── submission.pdf
└── ps_02
├── R
│ ├── 01_01_load_data.R
│ ├── 01_02_bst_median.R
│ ├── 01_03_percentile_median.R
│ ├── 01_04_reversepercentile_mean.R
│ ├── 01_05_density_plot.R
│ ├── 02_01_load_data.R
│ └── 02_06_compare_ci.R
├── child
│ ├── appendix.Rmd
│ ├── item_01.Rmd
│ ├── item_02.Rmd
│ └── item_03.Rmd
├── submission.Rmd
└── submission.pdf