Skip to content

Instantly share code, notes, and snippets.

@trcook
Last active July 24, 2017 22:00
Show Gist options
  • Save trcook/55a83fabe736daf48484db2f2f5788d0 to your computer and use it in GitHub Desktop.
Save trcook/55a83fabe736daf48484db2f2f5788d0 to your computer and use it in GitHub Desktop.
basic coalesce function for r
function(...) {
Reduce(function(x, y) {
i <- which(is.na(x))
x[i] <- y[i]
x},
list(...))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment