

   RRaannggee ooff VVaalluueess

        range(..., na.rm = FALSE)

   DDeessccrriippttiioonn::

        `range' returns a vector containing the minimum and
        maximum of all the values present in its arguments.  If
        `na.rm' is `FALSE', an `NA' value in any of the argu-
        ments will cause values of `NA' to be returned, other-
        wise `NA' values are ignored.

        This definition of range should not be confused with
        the sample range.

   SSeeee AAllssoo::

        `min', `max'.

   EExxaammpplleess::

        print(r.x <- range(rnorm(100)))
        diff(r.x) # the SAMPLE range

