Description Usage Arguments Value See Also Examples
autoload
creates a promise-to-evaluate autoloader
and
stores it with name name
in .AutoloadEnv
environment.
When R attempts to evaluate name
, autoloader
is run,
the package is loaded and name
is re-evaluated in the new
package's environment. The result is that R behaves as if
file
was loaded but it does not occupy memory.
.Autoloaded
contains the names of the packages for
which autoloading has been promised.
1 2 3 4 5 | autoload(name, package, reset = FALSE, ...)
autoloader(name, package, ...)
.AutoloadEnv
.Autoloaded
|
name |
string giving the name of an object. |
package |
string giving the name of a package containing the object. |
reset |
logical: for internal use by |
... |
other arguments to |
This function is invoked for its side-effect. It has no return value.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.