assignTemp              package:svMisc              R Documentation

_A_s_s_i_g_n _a _t_e_m_p_o_r_a_r_y _v_a_r_i_a_b_l_e _i_n _t_h_e _T_e_m_p_E_n_v _e_n_v_i_r_o_n_m_e_n_t

_D_e_s_c_r_i_p_t_i_o_n:

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

_U_s_a_g_e:

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

_A_r_g_u_m_e_n_t_s:

       x: The name of the variable 

   value: The value of the variable 

replace.existing: Do we replace an existing variable? 

_A_u_t_h_o_r(_s):

     Philippe Grosjean <phgrosjean@sciviews.org>

_S_e_e _A_l_s_o:

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

_E_x_a_m_p_l_e_s:

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

