-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
featurea feature request or enhancementa feature request or enhancement
Milestone
Description
Equivalent of SQL NULL_IF, http://www.resolvinghere.com/sof/6220956.shtml
na_if <- function(x, y) {
if (length(y) != length(x) && length(y) != 1) {
stop("`y` must be length 1 or same length as x")
}
x[x == y] <- NA
x
}Metadata
Metadata
Assignees
Labels
featurea feature request or enhancementa feature request or enhancement