Check if entry is not an integer
not.integer(x)
x
vector entry
a boolean value to indicate if entry is an integer
not.integer(23.43) # TRUE not.integer(45L) # FALSE if(not.integer(4L)) message("yes") # NULL