clippaste                package:svIO                R Documentation

_P_a_s_t_e _t_h_e _c_o_n_t_e_n_t _o_f _t_h_e _c_l_i_p_b_o_a_r_d _i_n_t_o _a_n _v_a_r_i_a_b_l_e

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

     Create a new object by pasting the content of the clipboard in it.
     Contents generated with 'copy' are recognized.

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

     clippaste(name = "newobj", type = "ascii", objclass = "data.frame", pos = 1, ...)

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

    name: The name of the variable to create 

    type: Specify the type of content (the format of the object
          currently in the clipboard) 

objclass: The class of the object to create 

     pos: Where to place the new object (by default, in the global
          workspace) 

     ...: Further arguments passed to the specific paste method 

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

     The result returned by the specific paste method.

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

     Eric Lecoutre

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

     'copy'

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

         ## Not run: 
             # A trivial example... but that becomes more interesting if the copy
             # and paste operations are made in different R instances
             data(iris)
             copy(iris, type = "ascii")
             clippaste(iris2)
         
     ## End(Not run)

