

print {base}                                 R Documentation

_P_r_i_n_t _V_a_l_u_e_s

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

     `print' prints its argument and returns it invisibly
     (via `invisible(x)').  It is a generic function which
     means that new printing methods can be easily added for
     new `class'es.

_U_s_a_g_e_:

     print(x, ...)

     print.factor(x, quote = FALSE)
     print.ordered(x, quote = FALSE)

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

     The default method, `print.default' has its own help
     page.  Use `methods("print")' to get all the methods
     for the `print' generic.

     See `noquote' as an example of a class whose main pur-
     pose is a specific `print' method.

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

     The default method `print.default', and help for the
     methods above; further `options', `noquote'.

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

     ts(1:20)#-- print  is the ``Default function'' --> print.ts(.) is called
     rr <- for(i in 1:3) print(1:i)
     rr

