Check for required packages
Check whether required packages are installed.
check_req_pkg(pkg = NULL)
pkg
: a character vector containing names of packages to checkthere will be no output from this function. Rather, the function will check whether the packages given as inputs are installed.
check_req_pkg("data.table") check_req_pkg(c("base", "utils", "ggplot2", "data.table"))
Useful links