tsibbledata (version 0.1.0)

olympic_running: Fastest running times for Olympic races

Description

olympic_running is a quadrennial tsibble with one value:

Time: Fastest running time for the event

Arguments

Format

Time series of class tsibble

Details

The event is identified using two keys:

Length: The length of the race
Sex: The sex of the event

The data contains missing values in 1916, 1940 and 1944 due to the World Wars.

Examples

Run this code
# NOT RUN {
library(ggplot2)
library(tsibble)
olympic_running %>% as_tibble %>%
  ggplot(aes(x=Year, y = Time, colour = Sex)) +
  geom_line() +
  facet_wrap(~ Length, scales = "free_y")
# }

Run the code above in your browser using DataLab