libraries.Rd
Attach a number of library packages at once
libraries(..., verbose = F, quoted = F)
Package names
Logical whether to announce via message() what packages are being attached.
Logical whether package names supplied bare or quoted as character
# \donttest{
libraries(grid, jsonlite)
libraries("grid", "jsonlite", quoted = TRUE)
libraries(c("grid", "jsonlite"), quoted = TRUE)
libraries(grid, verbose = TRUE)
#> Attached packages: grid
# }