ComeçarComece de graça

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 exercício faz parte do curso

Case Studies in Statistical Thinking

Ver curso

Instruções do exercício

  • Create an array f_shift, by shifting f such that its mean is zero. You can use the variable f_mean computed in previous exercises.
  • Draw 100,000 bootstrap replicates of the mean of the f_shift.
  • Compute and print the p-value.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# 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)
Editar e executar o código