March 2019
Beginner to intermediate
448 pages
13h 14m
English
The house_prices dataset that we will use here, has a dependent variable that is the house price. The independent variables are: the size, the number of bathrooms, the number of bedrooms, the number of entrances, the size of the balcony, and the size of the entrance. We will find the best transformations for the dependent and independent variables that get the best model.
library("acepack")data = read.csv("./house_prices.csv")x = data[,2:7]y = data[,1]
Read now
Unlock full access