What is the Studentized Bootstrap π±
Essentially itβs where you perform nested iterations of bootstrapping. Repeat the following $b$ times:
- Sample with replacement to get a new dataset. Treat this as your original observed dataset. Calculate the statistic of interest for this dataset $\theta^{b}$
- Perform normal bootstrapping using this sampled dataset. $\theta^{b,1},β¦,\theta^{b,m}$
- 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 $\theta^{b,1},β¦,\theta^{b,m}$. So we will have a standard error associated with each $\theta^{b}$.
In normal bootstrapping we aim to approximate $(\hat{\theta} β \theta)$ with $(\tilde{\theta}-\hat{\theta})$. In studentized bootstrapping we aim to approximate $(\hat{\theta} β \theta)/SE(\hat{\theta})$ with $(\tilde{\theta}-\hat{\theta})/SE(\tilde{\theta})$.
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.