Created
February 16, 2017 17:39
-
-
Save arbelt/fdf365fc71b367e7171b1f06dcc3f1d4 to your computer and use it in GitHub Desktop.
This file contains 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
library(tidyverse, purrr) | |
df <- tribble(~a, ~b, ~c, ~d, | |
1, 2, NA, 1, | |
1, 2, 3, NA, | |
2, 2, 1, 1, | |
2, 2, 1, 2) | |
keys_to_merge <- df %>% group_by(a,b) %>% | |
summarise_each(funs(sum(unique(.) %>% is.na %>% `!`))) %>% | |
group_by(a, b) %>% nest %>% | |
mutate_at("data", funs(map(., ~ .x < 2))) %>% | |
mutate_at("data", funs(map(., as.logical))) %>% | |
unnest %>% | |
group_by(a,b) %>% summarise(to_get = all(data)) %>% ungroup %>% | |
filter(to_get) %>% distinct(a,b) | |
merged_vals <- keys_to_merge %>% | |
left_join(df) %>% | |
group_by(a,b) %>% | |
summarise_all(funs(detect(., negate(is.na)))) | |
unmerged_vals <- df %>% anti_join(keys_to_merge) | |
merged_df <- bind_rows(merged_vals, unmerged_vals) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment