--- title: "Lab 9" author: "Name here" output: html_document --- Please use D2L to turn in both the PDF or Word output and your R Markdown file in. ## Lab Exercises ##### 1. (5 points) Explore the Seattle Housing dataset graphically and choose a metric variable to use to model housing prices. ```{r} Seattle <- read.csv('http://math.montana.edu/ahoegh/teaching/stat408/datasets/SeattleHousing.csv', stringsAsFactors = F) str(Seattle) ``` ##### 2. (5 points) Fit a t-distribution regression model for housing price. Specify the sampling model and all necessary prior distributions. ##### 3. (5 points) Summarize the results from this model.