LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Foundations of Inference in R

Kurs anzeigen

Anleitung zur Übung

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.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Calculate the two-sided p-value
opp_perm %>%
  summarize(p_value = ___)
Code bearbeiten und ausführen