zrange.Rd
This function calculates the range (minimum and maximum values) of a given numeric vector. It then formats and rounds these values to a specified number of decimal places, returning them as a string.
zrange(x, digits = 2)
A character string representing the range of x
, formatted as
'(min, max)', where 'min' and 'max' are the minimum and maximum values of x
rounded to digits
decimal places.