powered by
Marathon times of runners in the Men and Women divisions of the New York City Marathon, 1970 - 2020.
nyc_marathon
A data frame with 102 observations on the following 7 variables.
Year of marathom.
Name of winner.
Country of winner.
Running time (HH:MM:SS).
Running time (in hours).
Division: Men or Women.
Men
Women
Note about the race or the winning time.
library(ggplot2) ggplot(nyc_marathon, aes(x = year, y = time_hrs, color = division, shape = division)) + geom_point()
Run the code above in your browser using DataLab