Lecture 17 - Resampling Statistics Part 2 Flashcards

1
Q

What should you do when using resampling techniques when there aren’t very many ways to shuffle the original sample?

A

It’s more efficient to use only the possible samples.

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

What can bootstrap resamples be used to calculate?

A

The confidence interval of a mean

The standard error of a mean

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

What’s the difference between a resampling test and a bootstrap resample?

A

A bootstrap resample resamples with replacement, meaning that one value from the original dataset can appear multiple times.

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

What is the standard error of the mean when resampling?

A

The standard deviation of the means of all possible samples.

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

How can the standard error of the mean be estimated using bootstraps?

A

The standard deviation of the bootstrapped means = SEM.

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

Why do the SEM bootstrap estimate and the calculation using the SEM formula differ?

A

Because they’re both only estimates of the population SEM.

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

How is the 95% confidence interval calculated with bootstraps?

A

It’s the middle 95% of the means.

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

Using bootstrapping, how do you find the p value?

A

Simply the percentage of values above or below the value of interest.

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

What is bootstrapping with a model fit?

A

Because comparing the mean to one value involves a very simple model of the world, bootstrapping can be generalised easily to more complex models than the mean - e.g. it is possible to do regression analysis and use bootstrapping on the values of the gradient.

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

In calculating a confidence interval with bootstrapping, should resamples be made across or within experimental conditions?

A

Whichever suits the data best.

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

When curve fitting with bootstraps, what do you do?

A

Resample appropriately, and for each resample fit the model curve again, obtaining new k and n values. Then analyse appropriately as in previous method.

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

What are the pros of bootstrapping?

A
  • It’s a very general method - any model can be used and any parameters investigated.
  • Can be used to perform hypothesis testing (especially for one-sample tests).
  • No assumptions, tables or equations.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How many resamples should be generated with bootstraps?

A

1,000-10,000 depending on how accurate you want p.

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

What does the necessary sample size for bootstrapping depend on?

A

Variance and bias.

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

What are other resampling approaches, apart from normal resampling and bootstrapping?

A

Jack-knife and Monte-Carlo method.

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

What does Jack-knifing involve?

A

It’s similar to bootstrapping, but rather than random sampling with replacement, resampling is done by the selection of all data except one.

17
Q

What is the Monte-Carlo method?

A

It involves creating data based on model simulations and then comparing these to real data. However, it only works in certain situations where good simulations are available.

18
Q

What software can be used for resampling?

A
  • S-plus / R - David Howell, very basic.
  • Python, Matlab or equivalent scripting language.
  • C/C++