tsibbledata (version 0.4.1)

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 (seconds)

Arguments

Format

Time series of class tsibble

Details

The event is identified using two keys:

Length:The length of the race (meters)
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
library(tsibble)
olympic_running

if(requireNamespace("ggplot2")){
library(ggplot2)
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