rakeformat               package:rake               R Documentation

_R_e_f_o_r_m_a_t _t_h_e _r_a_k_e _o_b_j_e_c_t _f_o_r _i_n_f_o_r_m_a_t_i_v_e _d_i_s_p_l_a_y

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

     'rakeTot' adds row and column totals to the rake matrix. This is a
     subroutine called by both 'print.rake' and 'format.rake'.

     'print.rake' prints row and column totals to the screen.

     'format.rake' adds row and column totals and makes names long for
     more readable paper output.

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

     rakeTot(x)
     print.rake(x, ...)
     format.rake(x, ...)

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

       x: object of class "rake" created with the 'rake' function.

     ...: other arguments to pass to default methods.

_N_o_t_e:

     Do not use the functions 'print.rake' and 'format.rake'
     explicitly. Use 'print' and 'format' on a "rake" class object to
     call these functions using S3 methods.

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

     Toby Dylan Hocking <tdhock@ocf.berkeley.edu>

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

     'rake', 'rakeadj', 'predict.rake'

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

     data(certify)
     r <- rake(certify,1,7)
     # Note the differences between these display methods
     rakeTot(r)
     print(r)
     format(r,digits=5)
     format(r,digits=10)

