Learn R Programming

ck37r (version 1.0.0)

load_packages: Load a list of packages.

Description

Load packages and install them from CRAN if they aren't already available.

Usage

load_packages(pkgs = NULL, auto_install = F, update = F, verbose = F,
  ...)

Arguments

pkgs

Character vector of packages to load.

auto_install

Install any packages that could not be loaded.

update

Update packages where possible.

verbose

If T display more detailed information during execution.

...

Any additional parameters to pass through to install.packages()

Examples

Run this code

# Load these 4 packages and install them if necessary.
load_packages(c("MASS", "SuperLearner", "tmle", "doParallel"), auto_install = TRUE)

Run the code above in your browser using DataLab