Rev 27652 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{detach}\title{Detach Objects from the Search Path}\usage{detach(name, pos = 2, version)}\alias{detach}\arguments{\item{name}{The object to detach. Defaults to \code{search()[pos]}.This can be a name or a character string but \emph{not} acharacter vector.}\item{pos}{Index position in \code{\link{search}()} of database todetach. When \code{name} is \code{\link{numeric}}, \code{pos = name}is used.}\item{version}{A character string denoting a version number of thepackage to be loaded. If no version is given, a suitable defaultis chosen.}}\description{Detach a database, i.e., remove it from the \code{\link{search}()} pathof available \R objects. Usually, this is either a \code{\link{data.frame}}which has been \code{\link{attach}}ed or a package which was requiredpreviously.}\value{The attached database is returned invisibly, either as\code{\link{data.frame}} or as \code{\link{list}}.}\note{You cannot detach either the workspace (position 1) or the \pkg{base}package (the last item in the search list).}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{attach}}, \code{\link{library}}, \code{\link{search}},\code{\link{objects}}.}\examples{require(eda)#packagedetach(package:eda)## could equally well use detach("package:eda")## but NOT pkg <- "package:eda"; detach(pkg)## Instead, uselibrary(eda)pkg <- "package:eda"detach(pos = match(pkg, search()))## careful: do not do this unless 'splines' is not already loaded.library(splines)detach(2)# 'pos' used for 'name'}\keyword{data}