Resampling Statistics
1. **bootstrap** allows us to calculate the precision of an estimator by resampling with replacement
2. **permutation test** allows us to perform null-hypothesis testing by empirically computing the proportion of times a test statistic exceeds a permuted null distribution.
3. **jackknife** allows us to estimate the bias and standard error of an estimator by creating samples that drop one or more samples.
4. **cross-validation** provides a method to provide an unbiased estimate of the out-of-sample predictive accuracy of a model by dividing the data into separate training and test samples, where each data serves as both training and test for different models.