men1500m: Winners of the Olympic Men's 1500m

men1500mR Documentation

Winners of the Olympic Men's 1500m

Description

The data gives the winners of the men's 1500m race for the Olympic Games 1896 to 2004.

Usage

data("men1500m")

Format

A data frame with 25 observations on the following 5 variables.

year

the olympic year.

venue

city where the games took place.

winner

winner of men's 1500m race.

country

country the winner came from.

time

time (in seconds) of the winner.

Examples


  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)


HSAUR3 documentation built on April 15, 2023, 9:10 a.m.