(10 points)
Recall the Peachtree road race data that we have for 2010. You can read it into an R dataframe like so:
df = read.csv('https://www.marksmath.org/data/peach_tree2015.csv')
Select a random age n between 25 and 55 and run an ANOVA test to see if runners speeds change over the ages from n to n+5. Thus, in our last example on our ANOVA outline page, the ages variable might be generated by
set.seed(0)
start_age = sample(25:55, 1)
ages = start_age:(start_age+5)