March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this exercise, we will load a dataset containing house prices. The independent variables are size, number.bathrooms, number.bedrooms, number.entrances, size_balcony, and size_entrance. We will then do a few complex hypothesis tests:
library(multcomp) data = read.csv("./house_prices.csv") model = lm(Property_price ~ size + number.bathrooms + number.bedrooms + number.entrances + size_balcony + size_entrance,data=data)
Take a look at the following screenshot:

Read now
Unlock full access