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 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(dplyr)
library(ggplot2)
# Add log10_size
house_prices_2 <- house_prices %>%
___(___ = ___(___))