powered by
A vectorised function for use with dplyr's mutate, etc
reunite(..., sep = "_")
A single vector with unique non-missing information
Variables to pass to the function, currently only two at a time
Separator when vectors reunited, by default "_"
# \donttest{ data <- data.frame(fir=c(NA, "two", "three", NA), sec=c("one", NA, "three", NA), stringsAsFactors = FALSE) transmutate(data, single = reunite(fir, sec)) # }
Run the code above in your browser using DataLab