Description Usage Arguments Value Examples
Check if object is NULL
or all NA
s
1 | is_null_na(x)
|
x |
an atomic object or vector |
TRUE
, if x
is either NULL
or NA
; FALSE
otherwise.
1 2 3 4 | is_null_na(NULL)
is_null_na(NA)
is_null_na(c(NA, NA, NA))
is_null_na(c("something", NA))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.