assignTemp {svMisc}R Documentation

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?

Author(s)

Philippe Grosjean <phgrosjean@sciviews.org>

See Also

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

Examples

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

[Package svMisc version 0.9-46 Index]