run10 {openintro}R Documentation

Cherry Blossom 10 mile run data, 2009

Description

14 variables for all 14974 10 mile participants in the 2009 Cherry Blossom Run.

Usage

data(run10)

Format

A data frame with 14974 observations on the following 14 variables.

place
Finishing position. Separate positions are provided for each gender.
time
The total run time.
netTime
The run time from the start line to the finish line.
pace
The listed pace for each runner.
age
Age.
gender
Gender.
first
First name.
last
Last name.
city
Hometown city.
state
Hometown state.
country
Hometown country.
div
Running division (age group).
divPlace
Division place, also broken up by gender.
divTot
Total number of people in the division (again, also split by gender).

Source

~~ http://www.cherryblossom.org/ ~~

References

~~ http://www.openintro.org/ ~~

Examples

data(run10)

#===> men's times <===#
histPlot(run10$time[run10$gender == 'M'])

#===> times by gender <===#
densityPlot(run10$time, run10$gender, key=c('M','F'))
legend('topright', lty=2:1, col=c('red','black'), legend=c('M','F'))

[Package openintro version 1.0 Index]