Remove package(s) from the library permanently.
p_delete(..., char, character.only = FALSE, quiet = FALSE)
p_del(..., char, character.only = FALSE, quiet = FALSE)Character vector containing packages to load. If you are calling
p_delete from within a function (or just having difficulties calling it
using a character vector input) then pass your character vector of packages
to load to this parameter directly.
logical. If TRUE then p_load will only
accept a single input which is a character vector containing the names of
packages to load.
logical. Passed to print.p_delete as an attribute. If
TRUE no messages confirming package deletions are printed.
name(s) of package(s).
Using this function will remove the package from your library and cannot be loaded again without reinstalling the package.
if (FALSE) { # \dontrun{
p_delete(pacman) # You never want to run this
} # }