combine                 package:dse1                 R Documentation

_C_o_m_b_i_n_e _t_w_o _o_b_j_e_c_t_s.

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

     This is a generic method to combine two objects of the same class
     to make a single object of that class.

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

         combine(e1, e2)
         combine(e1, e2)


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

  e1, e2: TSdata objects.

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

     An object of the same class as the argument but containing both e1
     and e2.

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

     tbind, combine.TSdata, combine.forecast.cov

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

     if(is.R()) {data("eg1.DSE.data.diff", package="dse1")
                 data("eg1.DSE.data", package="dse1") }
     new.data.set <- combine(eg1.DSE.data.diff, eg1.DSE.data) 

