Last active
July 24, 2017 22:00
-
-
Save trcook/55a83fabe736daf48484db2f2f5788d0 to your computer and use it in GitHub Desktop.
basic coalesce function for r
This file contains hidden or 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
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