export | R Documentation |
This function is a wrapper around export.list()
that
exports variables by their name to another environment.
export(..., target.env = .GlobalEnv)
... |
variables to be exported. |
target.env |
The target environment. Use the global environment by default. |
Invisible NULL
.
Roland
https://stackoverflow.com/a/17484932/946850
export.list()
, assign()
local({
newly.created.var <- 5
export(newly.created.var)
})
newly.created.var
rm(newly.created.var)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.