	
	_T_h_e _N_a_m_e_s _A_t_t_r_i_b_u_t_e _o_f _a_n _O_b_j_e_c_t
	
	     names(x)
	     names(x) <- value
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     names provides access to the names attribute of a vec-
	     tor.  The first form prints the names of the observa-
	     tions and the second sets the names.  In this case,
	     value must be a vector of character strings of the same
	     length as x.
	
	_E_x_a_m_p_l_e_s:
	
	     # print the names attribute of the islands data set
	     names(islands)
	
	     # remove the names attribute
	     names(islands) <- NULL
	
