simplifyDims              package:Hmisc              R Documentation

_L_i_s_t _S_i_m_p_l_i_f_i_c_a_t_i_o_n

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

     Takes a list where each element is a group of rows that have been
     spanned by a multirow row and combines it into one large matrix.

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

     simplifyDims(x)

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

       x: list of spanned rows

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

     All rows must have the same number of columns.  This is used to
     format the list for printing.

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

     a matrix that contains all of the spanned rows.

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

     Charles Dupont

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

     'rbind'

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

     a <- list(a = matrix(1:25, ncol=5), b = matrix(1:10, ncol=5), c = 1:5)

     simplifyDims(a)

