Skip to contents

Usage

abort_packages_not_installed(...)

Arguments

...

Package name(s) to check

Details

Adapted from mikropml

Author

Kelly Sovacool sovacool@umich.edu

Examples

abort_packages_not_installed("base")
if (FALSE) {
your_function <- function() {
  abort_packages_not_installed("not-a-package-name", "dplyr", "non_package")
}
your_function()
}