Lecture 17 - Resampling Statistics Part 2 Flashcards
What should you do when using resampling techniques when there aren’t very many ways to shuffle the original sample?
It’s more efficient to use only the possible samples.
What can bootstrap resamples be used to calculate?
The confidence interval of a mean
The standard error of a mean
What’s the difference between a resampling test and a bootstrap resample?
A bootstrap resample resamples with replacement, meaning that one value from the original dataset can appear multiple times.
What is the standard error of the mean when resampling?
The standard deviation of the means of all possible samples.
How can the standard error of the mean be estimated using bootstraps?
The standard deviation of the bootstrapped means = SEM.
Why do the SEM bootstrap estimate and the calculation using the SEM formula differ?
Because they’re both only estimates of the population SEM.
How is the 95% confidence interval calculated with bootstraps?
It’s the middle 95% of the means.
Using bootstrapping, how do you find the p value?
Simply the percentage of values above or below the value of interest.
What is bootstrapping with a model fit?
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.
In calculating a confidence interval with bootstrapping, should resamples be made across or within experimental conditions?
Whichever suits the data best.
When curve fitting with bootstraps, what do you do?
Resample appropriately, and for each resample fit the model curve again, obtaining new k and n values. Then analyse appropriately as in previous method.
What are the pros of bootstrapping?
- 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 many resamples should be generated with bootstraps?
1,000-10,000 depending on how accurate you want p.
What does the necessary sample size for bootstrapping depend on?
Variance and bias.
What are other resampling approaches, apart from normal resampling and bootstrapping?
Jack-knife and Monte-Carlo method.