What is the Studentized Bootstrap π±
Essentially itβs where you perform nested iterations of bootstrapping. Repeat the following times:
- Sample with replacement to get a new dataset. Treat this as your original observed dataset. Calculate the statistic of interest for this dataset
- Perform normal bootstrapping using this sampled dataset.
- Collect the standard deviation (which is std error in this case) of the statistic across the nested bootstrap for this iteration, so the standard deviation of . So we will have a standard error associated with each .
In normal bootstrapping we aim to approximate with . In studentized bootstrapping we aim to approximate with .
For more see: https://www.stat.cmu.edu/~ryantibs/advmethods/notes/bootstrap.pdf
Notes mentioning this note
There are no notes linking to this note.