unload.Package {R.oo} | R Documentation |
Unloads a package. This is an alternative way to use detach()
to
unload a package.
If the package is not loaded, it will quietly return.
## S3 method for class 'Package': unload(this, ...)
... |
Not used. |
Returns nothing.
Henrik Bengtsson (http://www.braju.com/R/)
*load()
.
*isLoaded()
.
search
().
For more information see Package
.
pkg <- Package("boot") load(pkg) print(isLoaded(pkg)) unload(pkg) print(isLoaded(pkg))