rmTemp {svMisc} | R Documentation |
The function removes one or more variable(s) from TempEnv.
rmTemp(x)
x |
The name of the variable (string), or a vector of characters with the name of all variables to remove from TempEnv |
Nothing (or a try-error object if it fails).
This command issues no error message if variable(s) do not exist in TempEnv!
Philippe Grosjean <phgrosjean@sciviews.org>
TempEnv
, assignTemp
, getTemp
, existsTemp
assignTemp("test", TRUE) # Retrieve this variable getTemp("test") # Remove it rmTemp("test") # Try to retrieve it again getTemp("test")