OlympicPerfs {GmooG} | R Documentation |
Performances at the Summer Olympic Games from 1896 to 2016.
data(OlympicPerfs)
A data frame with 108789 observations on the following 8 variables.
rank
rank in event
medalType
medal won: one of Gold, Silver, Bronze, NA
games
location and year
discipline
discipline of event
event
name of event
result_value
result reported
result_type
type of result: distance, time, points, weight, and four others
country
country
This dataset and the dataset OlympicPeople are both used in Chapter 6, "The modern Olympic Games in numbers".
Derived from a dataset scraped from the web and provided to the maintainer.
data(OlympicPerfs, package="GmooG")
library(tidyverse)
OlyD <- OlympicPerfs %>% count(discipline)