Load any R Packages you may need library(mosaic) library(tidyverse) library(moderndive) The house_prices dataset from the moderndive R package contains data on over 21,000 houses from King County, WA. Because the most important piece of information for anyone on the market for a home is the price of the home, we’ll treat price as our outcome (y) variable. 1
# Load any R Packages you may need
library(mosaic)
library(tidyverse)
library(moderndive)
The house_prices dataset from the moderndive R package contains data on over 21,000 houses from King County, WA. Because the most important piece of information for anyone on the market for a home is the price of the home, we’ll treat price as our outcome (y) variable.
1
Construct a
# Paste your code here
2
Fit a linear regression model of price (y) as a
# Paste your code here
3
For a multiple regression model of price (y) as a function of both bedrooms (x1) and sqft_living (x2 - see the help page for the definition of this variable). Report the regression table, and interpret the estimated coefficient for bedrooms.
Given information:
The dataset is given from the R library.
Step by step
Solved in 4 steps with 6 images