unload.Package | 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
*load()
.
*isLoaded()
.
search
().
For more information see Package
.
## Not run:
pkg <- Package("boot")
load(pkg)
print(isLoaded(pkg))
unload(pkg)
print(isLoaded(pkg))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.