Learn R Programming

svMisc (version 0.9-46)

assignTemp: Assign a temporary variable in the TempEnv environment

Description

The function assigns a variable to TempEnv, an environment dedicated to temporary variables (especially useful for GUIs).

Usage

assignTemp(x, value, replace.existing = TRUE)

Arguments

x
The name of the variable
value
The value of the variable
replace.existing
Do we replace an existing variable?

See Also

TempEnv, changeTemp, getTemp, rmTemp, existsTemp, addTemp, tempvar

Examples

Run this code
assignTemp("test", 1:10)
# Retrieve this variable
getTemp("test")

Run the code above in your browser using DataLab