I am trying to take 3 columns and combine them into 2 columns. For each row, only two of the three columns have data (and the other is NA).
My first thought was to use coalesce
but I can't get it to work for my case.
tibble(
col1 = c(NA, 1, 0),
col2 = c(1, NA, 1),
col3 = c(0, 1, NA)
)
# A tibble: 3 × 3
col1 col2 col3
<dbl> <dbl> <dbl>
1 NA 1 0
2 1 NA 1
3 0 1 NA
My desired output would be like this:
tibble(
col1 = c(NA, 1, 0),
col2 = c(1, NA, 1),
col3 = c(0, 1, NA)
out1 = c(1, 1, 0),
out2 = c(0, 1, 1)
)
# A tibble: 3 × 5
col1 col2 col3 test1 test2
<dbl> <dbl> <dbl> <dbl> <dbl>
1 NA 1 0 1 0
2 1 NA 1 1 1
3 0 1 NA 0 1