range function with finite=T and logical parameters
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