Learn R Programming

ribiosUtils (version 1.7.7)

na.false: Replace NA with FALSE

Description

Replace NA in a vector with FALSE

Usage

na.false(x)

Value

Logical vector or matrix with NAs replaced by FALSE

Arguments

x

A logical vector or matrix

Author

Jitao David Zhang <jitao_david.zhang@roche.com>

See Also

myX <- c("HSV", "FCK", "FCN", NA, "BVB") res <- myX == "HSV" na.false(res)