Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alternative solutions for 2.2.1 Exercises 1 #1

Open
luifrancgom opened this issue Jul 12, 2022 · 0 comments
Open

Alternative solutions for 2.2.1 Exercises 1 #1

luifrancgom opened this issue Jul 12, 2022 · 0 comments

Comments

@luifrancgom
Copy link

Thank you for sharing your solutions as a book. I share some alternative solutions for 2.2.1 Exercises 1:

library(tidyverse)

  • Summary statistics

skimr::skim(mpg)

  • Missing values visualization

naniar::vis_miss(mpg)

  • Correlation matrix

mpg_numeric <- mpg %>% select(where(is.numeric))
corrr::correlate(mpg_numeric)

Best wishes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant