	
	_D_i_v_i_d_e _i_n_t_o _G_r_o_u_p_s
	
	     split(x, groups)
	
	_A_r_g_u_m_e_n_t_s:
	
	           x : vector containing the values to be divided
	               into groups.
	
	       group : a factor which defines the grouping.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     split divides the data in the vector x into the groups
	     defined by the factor groups.
	
	     The value returned is a list of vectors containing the
	     values for the groups.  The components of the list are
	     named by the factor levels of group.
	
	_E_x_a_m_p_l_e_s:
	
	     xa <- split(x, age)
	     lapply(xa, mean)
	     #split a matrix into a list by columns
	     split(x,col(x))
	
