R/install.packages.R

Defines functions install.packages

Documented in install.packages

#' Install a package
#'
#' @description
#'
#' To use an add-on package from the web, install it first.
#' After it's installed, load it into your current R session
#' using [library()].
#'
#' You only have to install a package once, but you have to
#' load it using [library()] every time you open a new R session.
#'
#' @details
#' The package name needs quotes.
#'
#' `install.packages(package)`
#'
#' @usage
#'
#' @examples
#' install.packages("tidyverse",  dependencies = TRUE)
#'
#' install.packages("gapminder")
#'
#' @export
#' @seealso
#'
#' [library()]
#'
install.packages <- function(){}
cobriant/qelp documentation built on July 1, 2022, 7:24 a.m.