home *** CD-ROM | disk | FTP | other *** search
-
- _R_a_n_g_e _o_f _V_a_l_u_e_s
-
- range(..., na.rm=FALSE)
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- range returns a vector containing the minimum and max-
- imum of all the values present in its arguments. If
- na.rm is FALSE, an NA value in any of the arguments
- will cause values of NA to be returned, otherwise NA
- values are ignored.
-
- This definition of range should not be confused with
- the sample range.
-
- _S_e_e _A_l_s_o:
-
- min, max.
-
- _E_x_a_m_p_l_e_s:
-
- print(r.x <- range(rnorm(100)))
- diff(r.x) #-- THE sample range
-
-