ComenzarEmpieza gratis

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 ejercicio forma parte del curso

Modeling with Data in the Tidyverse

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Load packages
library(moderndive)
library(ggplot2)

# Plot the histogram
ggplot(house_prices, aes(x = ___)) +
  ___ +
  labs(___, ___)
Editar y ejecutar código