Message-ID: <A7D1EB89-0A3C-456D-A73C-6E3B2B11DF3E@oracle.com>
Date: 2017-10-23T13:56:55Z
From: Lukas Stadler
Subject: 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