CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Modeling with Data in the Tidyverse

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create scatterplot with regression line
ggplot(house_prices, aes(___, y = ___)) +
  ___() +
  labs(x = "Number of bedrooms", y = "log10 price") +
  ___(method = "lm", se = FALSE)
Modifier et exécuter le code