	
	_S_a_v_e _R _D_a_t_a_s_e_t_s _a_n_d _F_u_n_c_t_i_o_n_s
	
	     function (..., list = character(0), file = "", ascii = FALSE)
	
	_A_r_g_u_m_e_n_t_s:
	
	         ... : the names of the objects to be saved.
	
	        list : A character vector containing the names of
	               the data sets to be saved.
	
	        file : the name of the file where the data will be
	               save.
	
	       ascii : if TRUE and ASCII representation of the data
	               is written.  This is useful for transporting
	               data between machines of different types.
	               The default value of ascii is false which
	               leads to a more compact binary file being
	               written.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     save writes a external representation of R objects to
	     the specified file.  The objects can be read back from
	     the file at a later date by using the function load.
	
	_S_e_e _A_l_s_o:
	
	     dput, dump, load.
	
