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-I / help / base / load < prev    next >
Encoding:
Text File  |  1997-04-23  |  524 b   |  28 lines

  1.     
  2.     _R_e_l_o_a_d _S_a_v_e_d _D_a_t_a_s_e_t_s
  3.     
  4.          load(filename)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.         filename : a character string giving the name of the
  9.                    file to load.
  10.     
  11.     _D_e_s_c_r_i_p_t_i_o_n:
  12.     
  13.          This function will reload the datasets written to a
  14.          file with the function save.
  15.     
  16.     _S_e_e _A_l_s_o:
  17.     
  18.          save.
  19.     
  20.     _E_x_a_m_p_l_e_s:
  21.     
  22.          # save all data
  23.          save(list=ls(), file="ALL")
  24.     
  25.          # restore the saved values
  26.          load("ALL")
  27.     
  28.