not.logical | R Documentation |
Opposite of is.logical(). Check if entry is a logical object
not.logical(x)
x |
vector entry |
a boolean value to indicate if entry is logical
test.env <- TRUE
test.notenv <- 0
not.logical(test.env) # FALSE
not.logical(test.notenv) # TRUE
if(not.logical(test.notenv)) message("yes") # yes
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.