Check-in 7

Author

YOUR NAME HERE

Remember, follow the instructions below and use R Markdown to create a pdf document with your code and answers to the following questions on Gradescope. You may find a template file by clicking “Code” in the top right corner of this page.

Load the flips data using the following code:

library(tidyverse)
flips <- read_csv("https://math167r-s24.github.io/static/flips.csv")
head(flips)
# A tibble: 6 × 5
  A     B     C     D     E    
  <chr> <chr> <chr> <chr> <chr>
1 T     H     H     T     H    
2 H     H     H     H     H    
3 T     H     T     H     H    
4 H     T     H     H     H    
5 H     T     T     H     T    
6 T     H     T     T     H    
  1. Design your own hypothesis test to try to identify the sequence of real flips. Design your own test statistic and simulate the null distribution of your test statistic. Can you identify which sequence is the real one?