openintro (version 1.7.1)

run10: Cherry Blossom 10 mile run data, 2009

Description

14 variables for all 14,974 10 mile participants in the 2009 Cherry Blossom Run (run10_09) and 9 variables for all 16,924 participants in 2012.

Usage

data(run10)

data(run10_09)

Arguments

Format

The run10_09 data frame summarizes 14,974 observations on the following 14 variables. The run10 (2012 data) summarizes 16,924 observations on 9 variables, which are featured with an asterisk.

place

* Finishing position. Separate positions are provided for each gender.

time

* The total run time. For run10, this is equivalent to netTime.

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.

location

* Hometown city. (run10 data only.)

state

* Hometown state. (For run10, this may also list a country.)

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).

References

~~ OpenIntro Statistics (openintro.org) ~~

Examples

Run this code
# NOT RUN {
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'))

#===> Examine Sample <===#
data(run10Samp)
# }

Run the code above in your browser using DataLab