Learn R Programming

DAAGxtras (version 0.7-6)

progression: Progression of Record times for track races, 1912 - 2008

Description

Progression in world record times for track and road races.

Usage

data(progression)

Arguments

source

Links to sources for the data are at

http://en.wikipedia.org/wiki/Athletics_world_record

Details

Record times for men's track events, from 1912 onwards. The series starts with times that were recognized as record times in 1912, where available.

Examples

Run this code
data(progression)
plot(log(Time) ~ log(Distance), data=progression)
library(lattice)
xyplot(log(Time) ~ log(Distance), data=progression, type=c("p","r"))
xyplot(log(Time) ~ log(Distance), data=progression,
       type=c("p","smooth"))
res <- resid(lm(log(Time) ~ log(Distance), data=progression))
plot(res ~ log(Distance), data=progression,
     ylab="Residuals from regression line on log scales")

Run the code above in your browser using DataLab