CommencerCommencer gratuitement

EDA of relationship of house price and waterfront

Let's now perform an exploratory data analysis of the relationship between log10_price, the log base 10 house price, and the binary variable waterfront. Let's look at the raw values of waterfront and then visualize their relationship.

The column log10_price has been added for you in the house_prices dataset.

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.

# View the structure of log10_price and waterfront
house_prices %>%
  ___(___, ___) %>%
  ___
  
Modifier et exécuter le code