Get startedGet started for free

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.

This exercise is part of the course

Modeling with Data in the Tidyverse

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# View the structure of log10_price and waterfront
house_prices %>%
  ___(___, ___) %>%
  ___
  
Edit and Run Code