Slide 35
Slide 35 text
Bootstrap example
1. Have some dataset x = (x1
, x2
, x3
, x4
, …, xn
) and function F = mean(x)
2. Resample: xa
= (x4
, x2
, x3
, x4
, …, xn
)
3. Evaluate Fa
= mean(xa
)
4. Repeat bootstrap iterations many times!
xb
= (x1
, x1
, x4
, …, xn
), Fb
= mean(xb
) ,
xc
= (x3
, x2
, x5
, …, xn
), Fc
= mean(xc
) , etc.
5. Now we have F from the original dataset, and Fa
, Fb
, Fc
, …, Fn
6. Calculate σ2 = Variance (Fa
, Fb
, Fc
, …, Fn
) and σ
IAA-SOSTAT 2021 ☆ Abbie Stevens, MSU & UMich 35
If this looks very similar to the jackknife example, that’s because bootstrap is a more generalized version of jackknife.