equals_na
What it does
Check for x == NA, x != NA and x %in% NA, and replaces those by is.na() calls.
Why is this bad?
Comparing a value to NA using == returns NA in many cases:
x <- c(1, 2, 3, NA)
x == NAwhich is very likely not the expected output.
Example
x <- c(1, 2, 3, NA)
x == NAUse instead:
x <- c(1, 2, 3, NA)
is.na(x)