detach                 package:base                 R Documentation

_D_e_t_a_c_h _O_b_j_e_c_t_s _f_r_o_m _t_h_e _S_e_a_r_c_h _P_a_t_h

_D_e_s_c_r_i_p_t_i_o_n:

     Detach a database, i.e., remove it from the 'search()' path of
     available R objects.  Usually, this is either a 'data.frame' which
     has been 'attach'ed or a package which was required previously.

_U_s_a_g_e:

     detach(name, pos = 2, version)

_A_r_g_u_m_e_n_t_s:

    name: The object to detach.  Defaults to 'search()[pos]'. This can
          be an unquoted name or a character string but _not_ a
          character vector.  If a number is supplied this is taken as
          'pos'. 

     pos: Index position in 'search()' of database to detach.  When
          'name' is a number, 'pos = name' is used. 

 version: A character string denoting a version number of the package
          to be removed.  This should be used only with a versioned
          installation of the package: see 'library'.

_D_e_t_a_i_l_s:

     This most commonly used with a single number argument referring to
     a position on the search list, and can also be used with a
     unquoted or quoted name of an item on the search list such as
     'package:tools'.

     When a package have been loaded with an explicit version number it
     can be detached using the name shown by 'search' or by supplying
     'name' and 'version': see the examples.

_V_a_l_u_e:

     The attached database is returned invisibly, either as
     'data.frame' or as 'list'.

_N_o_t_e:

     You cannot detach either the workspace (position 1) or the 'base'
     package (the last item in the search list).

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

_S_e_e _A_l_s_o:

     'attach', 'library', 'search', 'objects'.

_E_x_a_m_p_l_e_s:

     require(splines)#package
     detach(package:splines)
     ## could equally well use detach("package:splines")
     ## but NOT  pkg <- "package:splines"; detach(pkg)
     ## Instead, use
     library(splines)
     pkg <- "package:splines"
     detach(pos = match(pkg, search()))

     ## careful: do not do this unless 'splines' is not already loaded.
     library(splines)
     detach(2)# 'pos' used for 'name'

     ## an example of the name argument to attach
     ## and of detaching a database named by a character vector
     attach_and_detach <- function(db, pos=2)
     {
        name <- deparse(substitute(db))
        attach(db, pos=pos, name=name)
        print(search()[pos])
        eval(substitute(detach(n), list(n=name)))
     }
     attach_and_detach(women, pos=3)

     ## Not run: 
     ## Using a versioned install
     library(ash, version="1.0-9")  # or perhaps just library(ash)
     # then one of
     detach("package:ash", version="1.0-9")
     # or
     detach("package:ash_1.0-9")
     ## End(Not run)

