R/export.R
export.Rd
This function is a wrapper around export.list() that exports variables by their name to another environment.
export.list()
export(..., target.env = .GlobalEnv)
variables to be exported.
The target environment. Use the global environment by default.
Invisible NULL.
NULL
https://stackoverflow.com/a/17484932/946850
export.list(), assign()
assign()
Roland
local({ newly.created.var <- 5 export(newly.created.var) }) newly.created.var #> [1] 5 rm(newly.created.var) #> Warning: object 'newly.created.var' not found