Rev 6994 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{library}\title{Loading and Listing of Packages}\usage{library(name, help = NULL, lib.loc = .lib.loc,character.only = FALSE, logical.return = FALSE,warn.conflicts = TRUE)require(name, quietly = FALSE, warn.conflicts = TRUE)provide(name).First.lib(libname, pkgname).packages(all.available = FALSE, lib.loc = .lib.loc).lib.loc.Library.Provided.Autoloaded}\alias{library}\alias{provide}\alias{require}\alias{R_LIBS}\alias{.Autoloaded}\alias{.First.lib}\alias{.Library}\alias{.Provided}\alias{.packages}\alias{.lib.loc}\arguments{\item{name, help}{\code{name} or character string giving the name of apackage.}\item{lib.loc}{a character vector describing the location of \Rlibrary trees to search through.}\item{character.only}{a logical indicating whether \code{name} or\code{help} can be assumed to be character strings.}\item{logical.return}{logical. If it is \code{TRUE}, \code{FALSE} or\code{TRUE} is returned to indicate success.}\item{warn.conflicts}{logical. If \code{TRUE}, warnings areprinted about \code{\link{conflicts}} from attaching the newpackage, unless that package contains an object \code{.conflicts.OK}.}\item{quietly}{a logical. If \code{TRUE}, a warning will not beprinted if the package cannot be found.}\item{libname}{a character string giving the library directory wherethe package was found.}\item{pkgname}{a character string giving the name of the package.}\item{all.available}{logical; if \code{TRUE} return \code{character}vector of all available packages in \code{lib.loc}.}}\description{\code{library(name)} and \code{require(name)} both load the packagenamed \code{name}. \code{provide} allows code to register services thatit provides.\code{.First.lib()} is called when a package is loaded by \code{library()}.\code{.packages()} and the \code{.xxx} variables return information aboutpackage availability.}\details{\code{library(name)} and \code{require(name)} both load the packagewith name \code{name}. \code{require} is designed for use insideother functions; it returns \code{FALSE} and optionally gives awarning, rather than giving an error, if the package does not exist.Both functions check and update the list of currently loaded packagesand do not reload code that is already loaded. \code{require} alsochecks the list \code{.Provided}.\code{provide} allows code to register services that it provides. Theargument is stored in the list \code{.Provided}. \code{provide}returns \code{FALSE} if the name was already present in\code{.Provided} or among the packages in \code{search()}. The mainuse for \code{provide} is when multiple packages share code. This ismost likely when the code implements features present in S(-PLUS) butnot in R. For example, the spline functions \code{ns}, \code{bs} andso on are not included in the \R distribution. A package containingthese functions can use \code{provide(splines)} to register this fact.Another package that needs the functions can execute\code{require(splines)} rather than \code{library(splines)} to loadthe spline package only if their functionality is not already available.If \code{library} is called with no \code{name} or \code{help}argument, it gives a list of all available packages in \code{lib.loc}and invisibly returns their names (same as \code{.packages(all=T)}).\code{library(help = name)} prints information onthe package \code{name}, typically by listing the most important userlevel objects it contains.\code{.First.lib()} is called when a package is loaded by\code{library(.)}. It is called with two arguments, the name of thelibrary tree where the package was found (i.e., the correspondingelement of \code{lib.loc}), and the name of the package (in thatorder). It is a good place to put calls to \code{library.dynam()}which are needed when loading a package into this function (don't call\code{library.dynam()} directly, as this will not work if the packageis not installed in a ``standard'' location). \code{.First.lib()}is invoked after \code{search()} has been updated, so\code{pos.to.env(match("package:name"), search())} will return theenvironment in which the package is stored.\code{.packages()} returns the ``base names'' of the currently attachedpackages \emph{invisibly} whereas \code{.packages(all.available =TRUE)}gives (visibly) \emph{all} packages available in the librarylocation path \code{lib.loc}.\code{.Autoloaded} contains the ``base names'' of the packages forwhich autoloading has been promised.\code{.Library} is a character string giving the location of thedefault library, the ``library'' subdirectory of \code{R_HOME}.\code{.lib.loc} is a character vector with the locations of alllibrary trees that \R should use. It is initialized at startup fromthe environment variable \code{R_LIBS} (\code{RLIBS} as used by olderversions of \R is no longer accepted) (which should be a#ifdef unixcolon-separated#endif#ifdef windowssemicolon-separated#endiflist of directories at which \R library trees are rooted) followed by\code{.Library}.}\value{\code{library} returns the list of loaded (or available) packages(or \code{TRUE} if \code{logical.return} is \code{TRUE}).\code{require} returns a logical indicating whether the requiredpackage is available.}\author{R core; Guido Masarotto for the \code{all.available=TRUE}part of \code{.packages}.}\seealso{\code{\link{attach}}, \code{\link{detach}}, \code{\link{search}},\code{\link{objects}}, \code{\link{autoload}},\code{\link{library.dynam}},\code{\link{data}}, \code{\link{install.packages}}.#ifdef unix\code{\link{INSTALL}}, \code{\link{REMOVE}}#endif}\examples{.packages() # maybe just "base".packages(all = TRUE) # return all available as char.vectorlibrary() # list all available packageslibrary(lib = .Library) # list all packages in the default librarylibrary(help = eda) # documentation on package "eda"library(eda) # load package "eda"require(eda) # the same.packages() # "eda", toorequire(nonexistent) # FALSE## Suppose the a package needs to call a shared library named "foo.EXT",## where "EXT" is the system-specific extension. Then you should use.First.lib <- function(lib, pkg) {library.dynam("foo", pkg, lib)}}\keyword{data}