powered by
Check if a package is installed
package_installed(pkgs, all = FALSE)
logical, if packages are installed or not. If all=TRUE, return a logical value of whether all packages a re installed.
all=TRUE
vector of package names
only returns TRUE if all packages are installed. Default is FALSE.
# 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