--- title: "HW 8" author: "Name here" output: html_document --- Please use D2L to turn in both the HTML output and your R Markdown file in. ### Q1. (30 pts) Use a dataset containing baseball batting averages and fit a hierarchical model with the groups as the player positions. Your goal is to model batting averages of the players and assess the differences between the player positions in this dataset. ```{r} BattingAverage <- read.csv('http://math.montana.edu/ahoegh/teaching/stat491/data/BattingAverage.csv') head(BattingAverage) ``` Assume this is an analysis you have been asked to perform as part of a job interview. Write a 1-2 page summary of your analysis using R Markdown. This should include an introduction and conclusion.