CommencerCommencer gratuitement

p-value for two-sided hypotheses: opportunity costs

The p-value measures the likelihood of data as or more extreme than the observed data, given the null hypothesis is true. Therefore, the appropriate p-value for a two-sided alternative hypothesis is a two-sided p-value.

To find a two-sided p-value, you simply double the one sided p-value. That is, you want to find two times the proportion of permuted differences that are less than or equal to the observed difference.

The opp_perm data frame, containing the differences in permuted proportions, and the original observed statistic, diff_orig, are available in your workspace.

Cet exercice fait partie du cours

Foundations of Inference in R

Afficher le cours

Instructions

Use opp_perm to compute the two-sided p-value, or twice the proportion of permuted differences that are less than or equal to the original difference.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Calculate the two-sided p-value
opp_perm %>%
  summarize(p_value = ___)
Modifier et exécuter le code