[Rd] range function with finite=T and logical parameters
Lukas Stadler
lukas.stadler at oracle.com
Mon Oct 23 15:56:55 CEST 2017
Hi!
I was wondering about the behavior of the range function wrt. logical NAs:
> range(c(0L, 1L, NA), finite=T)
[1] 0 1
> range(c(F, T, NA), finite=T)
[1] NA NA
The documentation is quite clear that "finite = TRUE includes na.rm = TRUE”, so that I would have assumed that these two snippets would produce the same result.
- Lukas
More information about the R-devel
mailing list