rangeVal: Calculate range statistic.
Description
A simple wrapper for diff(range(x))
, so max(x) - min(x)
.
Usage
rangeVal(x, na.rm = FALSE)
Arguments
- x
[numeric
]
The vector.
- na.rm
[logical(1)
]
If FALSE
, NA is returned if an NA is encountered in x
.
If TRUE
, NAs are disregarded.
Default is FALSE