March 2019
Beginner to intermediate
448 pages
13h 14m
English
In the following exercise, we will work with the famous Boston dataset, which is included in R. The idea is to model the median property value in Boston, in terms of several numeric indicators such as environmental and crime factors:
library("olsrr") library(dplyr) model = lm(data=Boston, medv ~ .)
Read now
Unlock full access