not.na {quickcode} | R Documentation |
Not NA
Description
Opposite of is.na(). Check if entry is not NA
Usage
not.na(x)
Arguments
x |
vector entry |
Value
a boolean value to indicate if entry is NA
Examples
not.na(NA) # FALSE
not.na(NULL) # logical(0)
if(not.na(45)) message("something") # TRUE
[Package quickcode version 0.9.1 Index]