Questions tagged [bootstrap-sampling]

Use this tag for questions related to a statistical test or metric that relies on random sampling with replacement.

In statistics, bootstrapping is any test or metric that relies on random sampling with replacement. Bootstrapping allows one to—

  • assign measures of accuracy (e.g., bias, variance, confidence intervals, prediction error) to sample estimates,
  • estimate the sampling distribution of almost any statistic,
  • construct hypothesis tests, and
  • make statistical inferences based on the assumption of a parametric model if that assumption is in doubt, or if parametric inference is impossible or requires complicated formulas for the calculation of standard errors.

The basic idea of bootstrapping is that inference about a population from sample data (sample → population) can be modelled by resampling the sample data and performing inference about a sample from resampled data (resampled → sample). As the population is unknown, the true error in a sample statistic against its population value is unknown. In bootstrap resamples, the "population" is in fact the sample, and this is known; hence the quality of inference of the "true" sample from resampled data (resampled → sample) is measurable.

65 questions
1
vote
1 answer

Upscalling sample size for bootstrap during resampling

I started experimenting with bootstrapping and noticed that using a bigger sample size gives a tighter confidence interval, especially at very low sample size. I made a test and created a bootstrap function that upscale the sample size (during the…
F.Jean
  • 13
  • 2
0
votes
0 answers

Bootstrapping for Object Detection for Calculating Prediction Bounds

I have a research project on building an object detection model for detecting animals in thermal imageries. I already have a baseline model, and want to do some uncertainty quantification on my predictions. My idea was to do bootstrap sampling.…
Andrew Lee
  • 21
  • 2
0
votes
0 answers

Bias-Corrected and Accelerated Bootstrap Method new indices

In the BCa Bootstrap Method for Confidence Intervals, we have those two indices (instead of the 2.5 and 97.5 ones whose choice is the one in the Percentile Method): $$ k_1 = \Phi \left( \hat{z}_0 + \frac{\hat{z}_0 - z_{0.025}}{1 - \hat{a}(\hat{z}_0…
0
votes
1 answer

Consider why does bootstrap sampling distribution need to compute the estimate, If we knew the true parameters $\theta^∗$?

Page 192 of "Kevin Patrick Murphy. Machine Learning: A Probabilistic Perspective." says The bootstrap is a simple Monte Carlo technique to approximate the sampling distribution. This is particularly useful in cases where the estimator is a complex…
JJJohn
  • 1,436
0
votes
1 answer

Why is a bootstrap method helping in some way?

The general methods with bootstrapping is always similar to that: We have a given sample $x_1,...,x_n$. Then we pick some elements of the sample randomly and put it then back to the sample; This creates some new samples... But why is this actually…
user299124
0
votes
0 answers

Parametric bootstrap (Edited)

The first question is quite easy, but I'm stuck with the second one. Any suggestion? https://i.stack.imgur.com/q0yMz.jpg
0
votes
0 answers

Why is good to use bootstrapping samples?

I was researching a little about one algorithm called Random Forest, since it use bootstrapping samples, I mean it constructs several samples with replacement from a set, one question came to me, Why is good to use bootstrapping samples? I mean I…
neo33
  • 133