Log10 transformation of house size
You just saw that the predictor variable sqft_living
is right-skewed and hence a log base 10 transformation is warranted to unskew it. Just as we transformed the outcome variable price
to create log10_price
in the video, let's do the same for sqft_living
.
Este ejercicio forma parte del curso
Modeling with Data in the Tidyverse
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Load packages
library(moderndive)
library(dplyr)
library(ggplot2)
# Add log10_size
house_prices_2 <- house_prices %>%
___(___ = ___(___))