print.data.frame            package:base            R Documentation

_P_r_i_n_t_i_n_g _D_a_t_a _F_r_a_m_e_s

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

     Print a data frame.

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

     ## S3 method for class 'data.frame':
     print(x, ..., digits = NULL, quote = FALSE, right = TRUE)

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

       x: object of class 'data.frame'.

     ...: optional arguments to 'print' or 'plot' methods.

  digits: the minimum number of significant digits to be used: see
          'print.default'.

   quote: logical, indicating whether or not entries should be printed
          with surrounding quotes.

   right: logical, indicating whether or not strings should be
          right-aligned.  The default is right-alignment.

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

     This calls 'format' which formats the data frame column-by-column,
     then converts to a character matrix and dispatches to the 'print'
     method for matrices.

     When 'quote = TRUE' only the entries are quoted not the row names
     nor the column names.

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

     'data.frame'.

