ComeçarComece de graça

Predicting house price with waterfront

You just saw that houses with a view of the waterfront tend to be much more expensive. But by how much? Let's compute group means of log10_price, convert them back to dollar units, and compare!

The variable log10_price has already been added to house_prices for you.

Este exercício faz parte do curso

Modeling with Data in the Tidyverse

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Calculate stats
house_prices %>%
  group_by(___) %>%
  summarize(mean_log10_price = ___, n = ___)
  
Editar e executar o código