R/data.R

#' @title Olympic Marathon Data by Gender and Year
#' @docType data
#' @description
#' `olympic_marathon` contains data from Olympics men's and women's marathons
#' @usage olympic_marathon
#' @format `olympic_marathon` is an object of class tbl_df (inherits from tbl, data.frame) with 1956 rows and 9 columns
#' \describe{
#' \item{rank}{Finishing place based on race time}
#' \item{name}{Competitor's Name}
#' \item{nationality}{3 letter International Olympic Committee abbreviation of the country that the competitor is representing, see [Wikipedia](https://en.wikipedia.org/wiki/List_of_IOC_country_codes)}
#' \item{result}{The competitor's finishing time (hr:min:sec) (DNF if did not finish, DNS if did not start, DQ if disqualified)}
#' \item{gender}{Gender of the competitor (F = female, M = male)}
#' \item{event}{The Olympic event that the entry corresponds to}
#' \item{location}{The location of the Olympic Games}
#' \item{year}{The year of the Olympic Games}
#' \item{medal}{What medal the competitor earned, if any (G = Gold, S = Silver, B = Bronze)}
#' }
#' @examples olympic_marathon
#' @source `olympic_marathon` comes from the [World Athletics website results page](https://www.worldathletics.org/competition/calendar-results?) and [Olympian Database](https://www.olympiandatabase.com/)
"olympic_marathon"
mflesaker/olympicmarathon documentation built on May 4, 2022, 5:36 p.m.