Get startedGet started for free

Test for a difference in median test scores

The High School and Beyond survey is conducted on high school seniors by the National Center of Education Statistics. We randomly sampled 200 observations from this survey, and these data are in the hsb2 data frame (which is already loaded for you). Among other variables, this data frame contains scores on math and science scores of each sampled student.

This exercise is part of the course

Inference for Numerical Data in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Add a column, diff, of math minus science
hsb2 <- hsb2 %>%
  ___
Edit and Run Code