home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-M / help / base / save < prev    next >
Encoding:
Text File  |  1997-04-23  |  1023 b   |  33 lines

  1.     
  2.     _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
  3.     
  4.          save(..., list = character(0), file = "", ascii = FALSE)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.              ... : the names of the objects to be saved.
  9.     
  10.             list : A character vector containing the names of
  11.                    the data sets to be saved.
  12.     
  13.             file : the name of the file where the data will be
  14.                    saved.
  15.     
  16.            ascii : if TRUE, an ASCII representation of the data
  17.                    is written.  This is useful for transporting
  18.                    data between machines of different types.
  19.                    The default value of ascii is false which
  20.                    leads to a more compact binary file being
  21.                    written.
  22.     
  23.     _D_e_s_c_r_i_p_t_i_o_n:
  24.     
  25.          save writes a external representation of R objects to
  26.          the specified file.  The objects can be read back from
  27.          the file at a later date by using the function load.
  28.     
  29.     _S_e_e _A_l_s_o:
  30.     
  31.          dput, dump, load.
  32.     
  33.