sEdit                package:simecol                R Documentation

_S_i_m_p_l_e _e_d_i_t_i_n_g

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

     Simple Editing of Vectors, Lists of Vectors and Other Objects.

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

      sEdit(x, title = "Please enter values:")

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

       x: A named object that you want to edit.

   title: A title for the dialog box.

_D_e_t_a_i_l_s:

     If called with a vector or list of vectors and if *Tcl/Tk* is
     installed, a dialog box is shown in which data can be entered. If
     the 'x' is not of type vector or list of vectors, a default
     editing method is called.

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

     An object with the same type like 'x'.

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

     'edit' 'fixParms'

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

     ## Not run: 
      
     ## named vector
     vec  <- c(a = 1, b = 20, c = 0.03)
     new  <- sEdit(vec)
     ## unnamed vector
     sEdit(numeric(10))
     ## list of vectors
     lst <- list(vec = vec, test = 1:10)
     sEdit(lst)
     ## list with numeric and character vectors mixed
     lst <- list(vec = vec, test = c("a", "b", "c"))
     sEdit(lst)
     ## End(Not run)

