EDA of relationship
Unfortunately, making 3D scatterplots to perform an EDA is beyond the scope of this course. So instead let's focus on making standard 2D scatterplots of the relationship between price and the number of bedrooms, keeping an eye out for outliers.
The log10 transformations have been made for you and are saved in house_prices
.
Este ejercicio forma parte del curso
Modeling with Data in the Tidyverse
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create scatterplot with regression line
ggplot(house_prices, aes(___, y = ___)) +
___() +
labs(x = "Number of bedrooms", y = "log10 price") +
___(method = "lm", se = FALSE)