Exploratory visualization of house size
Let's create an exploratory visualization of the predictor variable reflecting the size of houses: sqft_living
the square footage of living space where 1 sq.foot ≈ 0.1 sq.meter.
After plotting the histogram, what can you say about the distribution of the variable sqft_living
?
Este exercício faz parte do curso
Modeling with Data in the Tidyverse
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Load packages
library(moderndive)
library(ggplot2)
# Plot the histogram
ggplot(house_prices, aes(x = ___)) +
___ +
labs(___, ___)