attach_pkgs | R Documentation |
These are developer-facing functions, useful for supporting new model types. Some models require one or more R packages to be fully attached to make predictions, and some require only that the namespace of one or more R packages is loaded.
attach_pkgs(pkgs)
load_pkgs(pkgs)
pkgs |
A character vector of package names to load or fully attach. |
These two functions will attempt either to:
fully attach or
load
the namespace of the pkgs
vector of package names, preserving the current
random seed.
To learn more about load vs. attach, read the "Dependencies" chapter of R Packages. For deploying a model, it is likely safer to fully attach needed packages but that comes with the risk of naming conflicts between packages.
An invisible TRUE
.
## succeed
load_pkgs(c("knitr", "readr"))
attach_pkgs(c("knitr", "readr"))
## fail
try(load_pkgs(c("bloopy", "readr")))
try(attach_pkgs(c("bloopy", "readr")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.