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 / dput < prev    next >
Encoding:
Text File  |  1997-04-23  |  493 b   |  21 lines

  1.     
  2.     _W_r_i_t_e _a_n _I_n_t_e_r_n_a_l _O_b_j_e_c_t _t_o _a _F_i_l_e
  3.     
  4.          dput(x, file="")
  5.     
  6.     _V_a_l_u_e:
  7.     
  8.          dput opens file and deparses the object x into that
  9.          file.  If x is a function the associated environment is
  10.          stripped.  Hence scoping information can be lost.
  11.     
  12.     _S_e_e _A_l_s_o:
  13.     
  14.          deparse, dump, dget, write.
  15.     
  16.     _E_x_a_m_p_l_e_s:
  17.     
  18.          # write an ASCII version of mean to the file "foo"
  19.          dput(mean,"foo")
  20.     
  21.