| men1500m | R Documentation |
The data gives the winners of the men's 1500m race for the Olympic Games 1896 to 2004.
data("men1500m")
A data frame with 25 observations on the following 5 variables.
yearthe olympic year.
venuecity where the games took place.
winnerwinner of men's 1500m race.
countrycountry the winner came from.
timetime (in seconds) of the winner.
data("men1500m", package = "HSAUR3")
op <- par(las = 2)
plot(time ~ year, data = men1500m, axes = FALSE)
yrs <- seq(from = 1896, to = 2004, by = 4)
axis(1, at = yrs, labels = yrs)
axis(2)
box()
par(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.