Hypothesis Testing - Suggested Answers

Packages

── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.2     ✔ readr     2.1.4
✔ forcats   1.0.0     ✔ stringr   1.5.0
✔ ggplot2   3.4.2     ✔ tibble    3.2.1
✔ lubridate 1.9.2     ✔ tidyr     1.3.0
✔ purrr     1.0.1     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
── Attaching packages ────────────────────────────────────── tidymodels 1.1.0 ──
✔ broom        1.0.5     ✔ rsample      1.1.1
✔ dials        1.2.0     ✔ tune         1.1.1
✔ infer        1.0.4     ✔ workflows    1.1.3
✔ modeldata    1.1.0     ✔ workflowsets 1.0.1
✔ parsnip      1.1.0     ✔ yardstick    1.2.0
✔ recipes      1.0.6     
── Conflicts ───────────────────────────────────────── tidymodels_conflicts() ──
✖ scales::discard() masks purrr::discard()
✖ dplyr::filter()   masks stats::filter()
✖ recipes::fixed()  masks stringr::fixed()
✖ dplyr::lag()      masks stats::lag()
✖ yardstick::spec() masks readr::spec()
✖ recipes::step()   masks stats::step()
• Learn how to get started at https://www.tidymodels.org/start/

Why we can never accept the null hypothesis

We know that all of you can read martian :)…. but let’s assume that another class that went through this study provided a sample statistic of \(\hat{p}\) = 53/100

set.seed(12345)

class_data <- tibble(
  correct_guess = c((rep("Correct" , 53)), rep("Incorrect" , 47)
))

null_dist_demo <- class_data |> 
  specify(response = correct_guess, success = "Correct") |>
  hypothesize(null = "point", p = .5) |> #fill in the blank
  generate(reps = 1000, type = "draw") |> #fill in the blank
  calculate(stat = "prop") #fill in the blank


visualize(null_dist_demo) +
  shade_p_value(0.53, direction = "right") #fill in the blank

null_dist_demo |>
  get_p_value(.53, direction = "right") #fill in the blank
# A tibble: 1 × 1
  p_value
    <dbl>
1   0.312

Let’s assume that now we incorrectly accept the null and say that the true proportion of people that can identify bumba correctly is equal to 0.5

Assume that another researcher does the same study, calculated the same statistic (.53), but set up the null and alternative hypothesis as follows:

\(H_o: \pi = .52\)

\(H_a \pi > .52\)

set.seed(12345)

class_data <- tibble(
  correct_guess = c((rep("Correct" , 53)), rep("Incorrect" , 47)
))

null_dist_demo2 <- class_data |> 
  specify(response = correct_guess, success = "Correct") |>
  hypothesize(null = "point", p = .52) |> #fill in the blank
  generate(reps = 1000, type = "draw") |> #fill in the blank
  calculate(stat = "prop") #fill in the blank


visualize(null_dist_demo2) +
  shade_p_value(0.53, direction = "right") #fill in the blank

null_dist_demo2 |>
  get_p_value(.53, direction = "right") #fill in the blank
# A tibble: 1 × 1
  p_value
    <dbl>
1   0.456

This p-value is also very high…..

If we were to accept the null hypothesis, one researcher would say \(\pi = 0.5\) while the other would say \(\pi = 0.52\)…. and that doesn’t make sense!

This is why we use the language “fail to reject.”

More complex hypothesis test

Context

The Iris Dataset contains four features (length and width of sepals and petals) of 50 samples of three species of Iris (Iris setosa, Iris virginica and Iris versicolor). A sepal is the outer parts of the flower (often green and leaf-like) that enclose a developing bud. The petal are parts of a flower that are the pollen producing part of the flower that are often conspicuously colored. The difference between sepals and petals can be seen below.

The data were collected in 1936 at the Gaspé Peninsula, in Canada. For the first question of the exam, you will use this data sets to investigate a variety of relationships to learn more about each of these three flower species. The data set is prepackaged in R, and is called iris.

data(iris)

We are going to test for a difference in mean Sepal length between the Setosa and Versicolor.

First, we want to filter the data set to only contain our two Species. Please create a new data set that achieves this below.

# insert code here
iris_filter <- iris |>
  filter(Species != "virginica")

Below, calculate and create the following:

– Mean sepal length for each group

– Box plot of Sepal length for each group

# insert code here
iris_filter |> 
  group_by(Species) |>
  summarize(mean_sep = mean(Sepal.Length))
# A tibble: 2 × 2
  Species    mean_sep
  <fct>         <dbl>
1 setosa         5.01
2 versicolor     5.94
iris_filter |>
  ggplot(aes(x=Sepal.Length, y=Species)) +
  geom_boxplot()

What is your point estimate? Using proper notation, report it below (setosa - versicolor).

\(\bar{x}_{setosa}-\bar{x}_{versicolor} = 5.006 - 5.936 = -0.93\)

Now, we are going to see if this difference is by chance, or if this difference is meaningful…

Below, write out the null and alternative hypothesis in both words + notation.

\(H_0: \mu_{setosa} - \mu_{versicolor} = 0\)

\(H_a: \mu_{setosa} - \mu_{versicolor} \neq 0\)

Building a Distribution

Let’s use simulation-based methods to conduct the hypothesis test specified above. We’ll start by generating the null distribution. First, let’s start by calculating the sample size for each group.

iris_filter |>
  group_by(Species) |>
  summarize(count=n())
# A tibble: 2 × 2
  Species    count
  <fct>      <int>
1 setosa        50
2 versicolor    50

Demo how 1 simulated difference in means in created

– PERMUTE or shuffle all observations together, regardless of their original species

– Distribute observations into two new groups of size n1 = 50 and size n2 = 50

– Calculate the new sample means for each group

– Subtract the new sample means

Now, create an appropriate visualization fo your null distribution using geom_histogram. Where is this distribution centered? Why does this make sense?

set.seed(12345  )
null_dist <- iris_filter |>
  specify(response = Sepal.Length, explanatory = Species) |>
  hypothesize(null = "independence") |>
  generate(reps = 1000, type = "permute") |>
  calculate(stat = "diff in means", order = c("setosa", "versicolor"))
Dropping unused factor levels virginica from the supplied explanatory variable 'Species'.
null_dist |>
  ggplot(aes(x=stat)) +
  geom_histogram()
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Now, use geom_vline to add a vertical line on your null distribution that represents your sample statistic. Based on the position of this line, do you your sample mean is an unusual observation under the assumption of the null hypothesis?

null_dist |>
  ggplot(aes(x=stat)) +
  geom_histogram() +
  geom_vline(xintercept =-0.93)
`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Calculate your p-value below

null_dist |>
  get_p_value(obs_stat = -0.93, direction = "two sided")
Warning: Please be cautious in reporting a p-value of 0. This result is an
approximation based on the number of `reps` chosen in the `generate()` step.
See `?get_p_value()` for more information.
# A tibble: 1 × 1
  p_value
    <dbl>
1       0

Write our an appropriate decision and conclusion in the context of the problem.

Decision: With a very small p-value, we reject the null hypothesis that the true mean sepal length for Setosa is equal to the true mean sepal length for Versicolor.

Conclusion: We have strong evidence to conclude that the true mean sepal length for Setosa is different than the true mean sepal length for Versicolor.