[Solved] Multiples rows to one row in R [closed]
We can group by ‘A’, ‘B’ and select the first non-NA element across other columns library(dplyr) df1 %>% group_by(A, B) %>% summarise(across(everything(), ~ .[order(is.na(.))][1]), .groups=”drop”) -output # A tibble: 1 x 8 # A B C D E F G H # <chr> <chr> <int> <int> <int> <int> <int> <lgl> #1 time place 1 2 … Read more