fix                   package:base                   R Documentation

_F_i_x _a_n _O_b_j_e_c_t

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

     `fix' invokes the editor specified in `options("editor")' on `x'
     and then assigns the new (edited) version of `x' in the global
     environment.

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

     fix(x, ...)

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

       x: An R object

     ...: Arguments to pass to editor

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

     `edit',  `edit.data.frame'

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

      ## Assume  `my.fun' is a user defined function :
      fix(my.fun)
      ## now my.fun is changed
      ## Also,
      fix(my.data.frame) # calls up data editor
      fix(my.data.frame, factor.mode="char") # use of ...

