Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a single function that determines if a value is NA, NaN, Inf, -Inf, or otherwise not a well-formed number?

share|improve this question

1 Answer

up vote 24 down vote accepted

You want is.finite

> is.finite(NA)
[1] FALSE
> is.finite(NaN)
[1] FALSE
> is.finite(Inf)
[1] FALSE
> is.finite(1L)
[1] TRUE
> is.finite(1.0)
[1] TRUE
> is.finite("A")
[1] FALSE
> is.finite(pi)
[1] TRUE
> is.finite(1+0i)
[1] TRUE
share|improve this answer
1  
Note that is.finite(TRUE) also returns TRUE. – kohske Sep 23 '11 at 1:00
@kohske: Good point. is.finite(FALSE) also returns TRUE. This is likely because TRUE and FALSE are just integers. – Joshua Ulrich Sep 23 '11 at 1:09
4  
True and false aren't integers - but they will be coerced without error/warning message – hadley Sep 25 '11 at 14:50
1  
@hadley: I wasn't clear; thanks for clarifying. I was referring to R booleans being 32-bit integers at the C level, not that is.integer(TRUE) would return TRUE. – Joshua Ulrich Sep 25 '11 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.