Learn R Programming

dipsaus (version 0.3.1)

package_installed: Check if a package is installed

Description

Check if a package is installed

Usage

package_installed(pkgs, all = FALSE)

Value

logical, if packages are installed or not. If all=TRUE, return a logical value of whether all packages a re installed.

Arguments

pkgs

vector of package names

all

only returns TRUE if all packages are installed. Default is FALSE.

Examples

Run this code

# Check if package base and dipsaus are installed
package_installed(c('base', 'dipsaus'))

# Check if all required packages are installed
package_installed(c('base', 'dipsaus'), all = TRUE)

Run the code above in your browser using DataLab