Attach a number of library packages at once

Usage,
libraries(..., verbose = F, quoted = F)

Arguments

...

Package names

verbose

Logical whether to announce via message() what packages are being attached.

quoted

Logical whether package names supplied bare or quoted as character

Author

Adrian Zetner

Examples

# \donttest{
libraries(grid, jsonlite)
libraries("grid", "jsonlite", quoted = TRUE)
libraries(c("grid", "jsonlite"), quoted = TRUE)
libraries(grid, verbose = TRUE)
#> Attached packages: grid
# }