Thank you for sharing your solutions as a book. I share some alternative solutions for 2.2.1 Exercises 1:
library(tidyverse)
skimr::skim(mpg)
- Missing values visualization
naniar::vis_miss(mpg)
mpg_numeric <- mpg %>% select(where(is.numeric))
corrr::correlate(mpg_numeric)
Best wishes
Thank you for sharing your solutions as a book. I share some alternative solutions for 2.2.1 Exercises 1:
library(tidyverse)skimr::skim(mpg)naniar::vis_miss(mpg)mpg_numeric <- mpg %>% select(where(is.numeric))corrr::correlate(mpg_numeric)Best wishes