| assignTemp {svMisc} | R Documentation |
The function assigns a variable to TempEnv, an environment dedicated to temporary variables (especially useful for GUIs).
assignTemp(x, value, replace.existing = TRUE)
x |
The name of the variable |
value |
The value of the variable |
replace.existing |
Do we replace an existing variable? |
Philippe Grosjean <phgrosjean@sciviews.org>
TempEnv, changeTemp, getTemp,
rmTemp, existsTemp, addTemp,
tempvar
assignTemp("test", 1:10)
# Retrieve this variable
getTemp("test")