rmTemp                package:svMisc                R Documentation

_R_e_m_o_v_e _o_n_e _o_r _s_e_v_e_r_a_l _t_e_m_p_o_r_a_r_y _v_a_r_i_a_b_l_e(_s) _f_r_o_m _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 removes one or more variable(s) from TempEnv.

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

     rmTemp(x)

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

       x: The name of the variable (character string), or a vector of
          characters with the name of all variables to remove from
          TempEnv. 

_V_a_l_u_e:

     Return 'TRUE' if variable existed and is deleted, and 'FALSE'
     otherwise. For multiple variable, a vector of booleans is
     returned.

_W_a_r_n_i_n_g:

     This command issues no error message if variable(s) do not exist
     in TempEnv!

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

     Philippe Grosjean <phgrosjean@sciviews.org>

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

     'TempEnv', 'assignTemp', 'changeTemp', 'getTemp', 'existsTemp',
     'addTemp'

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

     assignTemp("test", 1:10)
     # Retrieve this variable
     getTemp("test")
     # Remove it
     rmTemp("test")
     # Try to retrieve it again
     getTemp("test")

