Fitting a regression
house_prices
, which is available in your environment, has the log base 10 transformed variables included and the outlier house with 33 bedrooms removed. Let's fit a multiple regression model of price as a function of size and the number of bedrooms and generate the regression table. In this exercise, you will first fit the model, and based on the regression table, in the second part, you will answer the following question:
Which of these interpretations of the slope coefficent for bedrooms is correct?
Diese Übung ist Teil des Kurses
Modeling with Data in the Tidyverse
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Fit model
model_price_2 <- lm(___,
data = house_prices)
# Get regression table
___