powered by
assert_all_are_not_na(x) assert_any_are_not_na(x) is_na(x) is_not_na(x)
is_na
is.na
is_not_na
assert_*
is_*
FALSE
x <- c(0, NaN, NA) is_na(x) is_not_na(x) assert_all_are_not_na(1:10) assert_any_are_not_na(x) dont_stop(assert_all_are_not_na(x))
Run the code above in your browser using DataLab