--- title: "STAT 408 - R: Overview Exercises" date: "January 11, 2018" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ## Exercise: Vectors 1. Create a vector with your first, middle, and last names. ## Exercise: Subsetting 1. Create a new data frame that only includes houses worth more than $1,000,000. 2. From this new data frame what is the average living square footage of houses. Hint columns in a data.frame can be indexed by `Seattle$sqft_living` ## Exercise: Basic Plot 1. Using only the subset of homes worth more than a million dollars, create a graphic.