get_it_dunn_run: Get it Dunn Run, Race Times

Description Usage Format Source Examples

Description

Get it Dunn is a small regional run that got extra attention when a runner, Nichole Porath, made the Guiness Book of World Records for the fastest time pushing a double stroller in a half marathon.

Usage

1

Format

A data frame with 978 observations on the following 10 variables.

date

Date of the run.

race

Run distance.

bib_num

Bib number of the runner.

first_name

First name of the runner.

last_initial

Initial of the runner's last name.

sex

Sex of the runner.

age

Age of the runner.

city

City of residence.

state

State of residence.

run_time_minutes

Run time, in minutes.

Source

http://www.getitdunnrun.com

https://www.gopherstateevents.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
d <- subset(get_it_dunn_run,
    race == "5k" & date == "2018-05-12" &
        !is.na(age) & state %in% c("MN", "WI"))
head(d)
m <- lm(run_time_minutes ~ sex + age + state, d)
summary(m)
plot(m$fitted, m$residuals)
boxplot(m$residuals ~ d$sex)
plot(m$residuals ~ d$age)
hist(m$residuals)

tessington/qsci381 documentation built on Sept. 26, 2020, 12:40 p.m.