Skip to main content

builtin_range

Function builtin_range 

Source
fn builtin_range(
    args: &[RValue],
    named: &[(String, RValue)],
) -> Result<RValue, RError>
Expand description

Range (minimum and maximum) of all values.

@param … numeric vectors @param na.rm logical; if TRUE, remove NAs before computing @return numeric vector of length 2: c(min, max) (c(NA, NA) if NAs present and na.rm is FALSE)