Directions:
For this question you’ll use the “2015 Boston Marathon” data set located at the URL:
https://remiller1450.github.io/data/BostonMarathon2015.csv
These data record the demographics, residence, finish time and place, and splits of everyone who finished the race.
marathon_data
.head()
,
print()
, dim()
and/or View()
).
Afterwards, use an R comment (or plain text if using R Markdown) to
provide a brief written statement that includes: what a case represents
in this data set, how many cases are present, and how many variables
(columns) are present.R
function to find the
type of the variable Official.Time
. Based upon this type,
it possible to use the mean()
function to find the average
finish time without coercion? Briefly explain.Age
. Based upon this type, it possible to use the
mean()
function to find the average age of cases without
coercion? Briefly explain.