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 / source < prev    next >
Encoding:
Text File  |  1997-04-23  |  670 b   |  22 lines

  1.     
  2.     _R_e_d_i_r_e_c_t _I_n_p_u_t
  3.     
  4.          source(file, local=FALSE)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.             file : the name of the file to read from (quoted).
  9.     
  10.            local : if local is FALSE, the statements scanned are
  11.                    evaluated in the global environment, other-
  12.                    wise in the local calling source.
  13.     
  14.     _D_e_s_c_r_i_p_t_i_o_n:
  15.     
  16.          source causes R to accept its input from the named file
  17.          (the name must be quoted).  Input is read from that
  18.          file until the end of the file is reached.  parse is
  19.          used to scan the files in, they are then evaluated
  20.          sequentially in the chosen environment.
  21.     
  22.