1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/lib.R
\name{lib}
\alias{lib}
\title{A wrapper for \code{library}}
\usage{
lib(...)
}
\arguments{
\item{...}{[any]\cr
Package names.}
}
\value{
[\code{logical}]: Named logical vector determining the success
of package load.
}
\description{
Tries to load packages. If the packages are not found, they will be installed from
the default repository. This function is intended for use in interactive sessions
and should not be used by other packages.
}
\examples{
\dontrun{
lib("BBmisc", "MASS", "rpart")
}
}
|