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

  1.     
  2.     _R_e_m_o_v_e _O_b_j_e_c_t_s _f_r_o_m _a _S_p_e_c_i_f_i_e_d _E_n_v_i_r_o_n_m_e_n_t
  3.     
  4.          remove(names, envir=NULL, inherits=FALSE)
  5.          rm(names, envir=NULL, inherits=FALSE)
  6.     
  7.     _D_e_s_c_r_i_p_t_i_o_n:
  8.     
  9.          remove and rm can be used to remove objects.  names
  10.          must be character vector.  All elements in it will be
  11.          removed.  If envir is NULL then the the currently
  12.          active environment is searched first.  If inherits is
  13.          TRUE then parents of the supplied directory are
  14.          searched until a variable with the given name is
  15.          encountered. A warning is printed for each variable
  16.          that is not found.
  17.     
  18.     _S_e_e _A_l_s_o:
  19.     
  20.          ls, objects,
  21.     
  22.