Say, I have a vector y, and I want to check if each element in y is integer or not, and if not, stop with an error message. I tried is.integer(y), but it does not work.
|
|
The simplest (and fastest!) thing is probably this:
...So trying it out:
If you want a better error message:
|
||||
|
|
|
you could do:
or
and if you want a single
|
|||
|
|
|
Here's another way (using the same trick as Justin of comparing each number to that number coerced into the 'integer' type):
To make your test:
|
|||
|
|
|
Not sure which is faster Tim's way or this, but:
or:
|
|||||||||
|
|
I went in a completely different direction then Tim (I like his better though my approach works on a mixed vector that's a character vector with integers etc.):
EDIT: altered the function as it only worked on character vectors. This works on vectors of the class character as well in case you have a character vector with various number intermixed but that have been coerced to character. |
|||||||||||
|