nwsDeleteVar               package:nws               R Documentation

_D_e_l_e_t_e _a _V_a_r_i_a_b_l_e _f_r_o_m _a _n_e_t_W_o_r_k_S_p_a_c_e

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

     Delete a variable from the shared netWorkSpace.

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

     ## S4 method for signature 'netWorkSpace':
     nwsDeleteVar(.Object, xName)

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

 .Object: a netWorkSpace class object.

   xName: character string specifying the name of the variable to be
          deleted.

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

     ## Not run: 
     ws <- netWorkSpace('nws example')
     nwsStore(ws, 'x', 10)
     nwsDeleteVar(ws, 'x')
     ## End(Not run)

