copy                  package:svIO                  R Documentation

_C_o_n_v_e_r_t _a_n _R _o_b_j_e_c_t _a_n_d _c_o_p_y _i_t _t_o _t_h_e _c_l_i_p_b_o_a_r_d

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

     This is a wrapper around 'export', using 'file = "clipboard"'

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

         copy(x, type = "raw", objname = deparse(substitute(x)), ...)

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

       x: The object to copy 

    type: 'type' gives the format in which the object should be
          converted. The list of recognized formats for this object is
          obtained with 'type = "typelist"' 

 objname: The name of the copie object (by default, it is the name of
          the variable that holds it) 

     ...: Further arguments to use with the corresponding 'export'
          method 

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

     The result returned by the corresponding 'export' method

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

     Philippe Grosjean & Eric Lecoutre

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

     'export', 'clippaste'

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

         ## Not run: 
             data(iris)
             copy(iris, type = "ascii")
         
     ## End(Not run)

