not.null | R Documentation |
Opposite of is.null(). Check if entry is not NULL
not.null(x)
x |
vector entry |
a boolean value to indicate if entry is NULL
is.null("") # FALSE
not.null("") # TRUE
not.null(NULL) # FALSE
if(not.null(45)) message("something") # yes
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.