Hypothesis test: Does lane assignment affect performance?
Perform a bootstrap hypothesis test of the null hypothesis that the mean fractional improvement going from low-numbered lanes to high-numbered lanes is zero. Take the fractional improvement as your test statistic, and "at least as extreme as" to mean that the test statistic under the null hypothesis is greater than or equal to what was observed.
Este ejercicio forma parte del curso
Case Studies in Statistical Thinking
Instrucciones del ejercicio
- Create an array
f_shift
, by shiftingf
such that its mean is zero. You can use the variablef_mean
computed in previous exercises. - Draw 100,000 bootstrap replicates of the mean of the
f_shift
. - Compute and print the p-value.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Shift f: f_shift
f_shift = ____ - ____
# Draw 100,000 bootstrap replicates of the mean: bs_reps
bs_reps = ____
# Compute and report the p-value
p_val = ____(____ >= ____) / 100000
print('p =', p_val)