R/library.R

Defines functions library

Documented in library

#' load a package
#'
#' @description
#'
#' Load packages you've already installed
#' into your current R session. After you've
#' loaded it, all its functions will be
#' available for you to use.
#'
#' @details
#' The package name doesn't need quotes.
#'
#' `library(package)`
#'
#' @usage
#'
#' @examples
#'
#' library(tidyverse)
#'
#' library(gapminder)
#'
#' @export
#' @seealso
#'
#' [install.packages()]
#'
library <- function(){}
cobriant/qelp documentation built on July 1, 2022, 7:24 a.m.