Description Usage Arguments Value See Also Examples
Existy()
returns TRUE or FALSE if an object exists or not.
An object exists if it is not NULL or NA.
1 | Existy(.x)
|
.x |
an object. |
a logical value.
Other predicate functions: Truthy
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Some examples
Existy(4) # TRUE
Existy("foo") # TRUE
Existy(NULL) # FALSE
Existy(NA) # FALSE
# Works with lists
Existy(list(4, "foo", NULL, NA)) # TRUE
Existy(list(4, "foo")) # TRUE
Existy(list(NULL, NA)) # TRUE
Existy(list(NULL)) # TRUE
Existy(list(NA)) # FALSE
# Works with applying over lists
lapply(list(4, "foo", NULL, NA), Existy) # TRUE, TRUE, FALSE, FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.