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