Bootstrapping Flashcards
What is the “original sample”?
The initial sample from some given distribution from which you will create bootstrap samples
How do we form bootstrap samples?
We select an observation from the original sample, record it, return it to the sample and repeat the earlier steps until we have recorded a number of observation which is equal to the size of the original sample
May we have repetition of observations within a single bootstrap sample?
Yes
What “data structure” do we often use to store bootstrap samples in R?
An Mxn matrix where m represents the number of rows (i.e.number of bootstrap samples) and n represents the sample size.
As well as an Mx1 matrix (i.e. vector) to store our statistic of interest (eg. bootstrap sample means)
What is the Bootstrap Assumption?
The bootstrap samples relate to the original sample in a similar way to how the original sample relates to the population of interest. The sampling error between the 3 groups respective will be equal.
x(b) - x(o) ~ x(o) - mu
What is sampling error?
The difference between the original sample mean and the population of interest mean (i.e. mu)
= x(o) - mu
What is bootstrap sampling error?
The difference between the bootstrap sample mean and the original sample mean
= x(b) - x(o)