Created
June 21, 2016 09:20
-
-
Save timcdlucas/a20009632ac48b2ad086d4026c309ab1 to your computer and use it in GitHub Desktop.
psum function
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
x <- c(NA, 5:1) | |
y <- c(5:1, NA) | |
psum <- function(x, y){ | |
x[is.na(x)] <- 0 | |
y[is.na(y)] <- 0 | |
x + y | |
} | |
psum(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment