Scottish Hill Race data

library(tidyverse)

These data come from Jessica Utts. They are mentioned in the GAISE 2016 College report.

The times are for the fastest runner in each race.

Hillrace <- readr::read_csv("fastest_runner.csv")
Hillrace <- 
  Hillrace %>% 
  gather(key = sex, value = time, male, female)
save(Hillrace, file = "../../data/Hillrace.rda")


dtkaplan/statPREPpackage documentation built on May 15, 2019, 5:22 p.m.