View source: R/exported_functions.R
check_attached | R Documentation |
Check if packages are attached
check_attached(...)
... |
(Dots) Package names as bare names, strings, or a character vector. If left empty, lists all attached packages. |
If dots
is empty, a character vector of all attached packages.
Otherwise, return a named logical vector where TRUE
means the package
is attached
## Not run:
check_attached()
#> [1] "librarian" "testthat" "magrittr" "stats" ...
check_attached(c("utils", "stats"))
#> utils stats
#> TRUE TRUE
check_attached("datasets", "base", fakepkg)
#> datasets base fakepkg
#> TRUE TRUE FALSE
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.