-
-
Save wlinInspire/1b68d38a89d631fba68ae37027c3e368 to your computer and use it in GitHub Desktop.
10 R Tricks to Boost Your Productivity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cc <- function(df) { | |
print(df %>% is.na() %>% colSums()) | |
} | |
cd <- function(df) { | |
print(df %>% is.na() %>% colMeans()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment