	
	_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
	
