home *** CD-ROM | disk | FTP | other *** search
-
- _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
-
- save(..., 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
- saved.
-
- ascii : if TRUE, an 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.
-
-