rjoin              package:conf.design              R Documentation

_C_o_n_c_a_t_e_n_a_t_e _d_e_s_i_g_n_s _b_y _r_o_w_s.

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

     Combine two or more designs with the same names into a single
     design by row concatenation.

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

     rjoin(..., part.name="Part")

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

     ...: Two or more designs with identical component names. 

part.name: Name for an additional factor to identify the original
          components in the result. 

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

     Almost the same as rbind(), but an additional factor in the result
     separates the original components.

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

     A single design with the arguments stacked above each other (in a
     similar manner to rbind()), together with an additional factor
     whose levels identify the original component designs, or 'parts'.

_S_i_d_e _E_f_f_e_c_t_s:

     None.

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

     conf.design, join, direct.sum

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

      # A two replicate partially confounded factorial design.
      d1 <- conf.design(c(1,1,1), 2, treatment.names=LETTERS[1:3])
      d2 <- conf.design(c(0,1,1), 2, treatment.names=LETTERS[1:3])
      dsn <- rjoin(d1, d2)

