March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this recipe, we will work with a dataset containing house prices. The intention will be to identify influential observations:
library(car) data = read.csv("./house_prices_aug.csv") model = lm(Property_price ~ size + number.bathrooms + number.bedrooms +number.entrances +size_balcony +size_entrance,data=data)
Read now
Unlock full access