| taf.library {TAF} | R Documentation |
TAF Library
Description
Load and attach package from local TAF library.
Usage
taf.library(package, messages = FALSE, warnings = FALSE)
Arguments
package |
name of a package found in |
messages |
whether to show messages when package loads. |
warnings |
whether to show warnings when package loads. |
Value
The names of packages currently installed in the TAF library.
Note
The purpose of the TAF library is to retain R packages that are not commonly used (and not on CRAN), to support long-term reproducibility of TAF analyses.
If a package has dependencies that are also in the TAF library, they will be
loaded in preference of any version that may be installed in the system or
user library. To force the use of a dependency from outside of the TAF
library call library(package) prior to the call to taf.library.
See Also
library is the underlying base function to load and attach a
package.
taf.boot is the procedure to install packages into a local TAF
library, via the SOFTWARE.bib metadata file.
detach.packages detaches all packages.
TAF-package gives an overview of the package.
Examples
## Not run:
# Show packages in TAF library
taf.library()
# Load packages
taf.library(this)
taf.library(that)
## End(Not run)