powered by
Opposite of is.na(). Check if entry is not NA
not.na(x)
a boolean value to indicate if entry is NA
vector entry
not.na(NA) # FALSE not.na(NULL) # logical(0) if(not.na(45)) message("something") # TRUE
Run the code above in your browser using DataLab