Last active
January 11, 2017 01:01
-
-
Save vikjam/99cd2b0f6339cd5d03efcd834b802efd to your computer and use it in GitHub Desktop.
Include NA in test
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(a, b) { | |
| equality.test <- (a == b) | |
| equality.test[is.na(a) & is.na(b)] <- TRUE | |
| equality.test[is.na(equality.test)] <- FALSE | |
| return(equality.test) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment