range2 {mark} | R Documentation |
Range 2
Description
Employs min()
and max()
. However, base::range()
, there is no argument
for removing Inf
values.
Usage
range2(x, na.rm = FALSE)
Arguments
x |
A numeric (or character) vector (see Note in base::min) |
na.rm |
Logical, if |
Value
A numeric
vector of length 2 of the minimum and maximum values,
respectively
Examples
x <- rep(1:1e5, 100)
system.time(rep(range(x), 100))
system.time(rep(range2(x), 100))
x[sample(x, 1e5)] <- NA
system.time(rep(range(x, na.rm = TRUE), 100))
system.time(rep(range2(x, na.rm = TRUE), 100))
[Package mark version 0.8.0 Index]