Description Usage Arguments Examples
Silently unloads all packages in the supplied character vector. Large packages loaded into the R environment can slow down computation. Unload those packages easily and silently with unloadPkgs
1 | unloadPkgs(pkgs)
|
pkgs |
|
1 2 3 4 5 | startPkgs(c("tidyverse","magrittr"))
system.time({detach("package:tidyverse", character.only = TRUE)
detach("package:magrittr", character.only = TRUE)})
startPkgs(c("tidyverse","magrittr"))
system.time(unloadPkgs(c("tidyverse","magrittr")))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.