Bootstrapping Flashcards

1
Q

What is the “original sample”?

A

The initial sample from some given distribution from which you will create bootstrap samples

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do we form bootstrap samples?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

May we have repetition of observations within a single bootstrap sample?

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What “data structure” do we often use to store bootstrap samples in R?

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the Bootstrap Assumption?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is sampling error?

A

The difference between the original sample mean and the population of interest mean (i.e. mu)

= x(o) - mu

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is bootstrap sampling error?

A

The difference between the bootstrap sample mean and the original sample mean

= x(b) - x(o)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly