R/loadGRAN.R

Defines functions loadGRAN

Documented in loadGRAN

##' Load a GRAN repo package
##'
##' @param nm The name of the repository for which to load the package. Defaults
##' \code{"current"}
##' @return NULL. Called for the side-effect of loading the specified package
##' @details This function is a convenience to load the package GRAN<nm>, which
##' will provide the contained GRAN repository as default repository within
##' the switchr framework.
##' @export
loadGRAN = function(nm = "current") {
    code = sprintf("library(%s)", paste0("GRAN", nm))
    eval(parse(text = code), envir = .GlobalEnv)
    NULL
}

Try the switchr package in your browser

Any scripts or data that you put into this service are public.

switchr documentation built on March 31, 2023, 5:13 p.m.