tbind                 package:tframe                 R Documentation

_B_i_n_d _T_i_m_e _S_e_r_i_e_s

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

     Bind together (in non-time dimension) two time series objects.

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

         tbind(x, ..., pad.start=T, pad.end=T, warn=T)
         tbind(x, ..., pad.start=T, pad.end=T, warn=T)


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

       x: A time series object.

     ...: Time series objects.

pad.start: Logical indicating if the start should be truncated or
          padded with NAs to align time.

 pad.end: Logical indicating if the end should be truncated or padded
          with NAs to align time.

    warn: Logical indicating if warnings should be issued.

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

     Bind data as in cbind or tsmatrix align time dimension aligned. 
     The default action pads series with NA to time union.  If
     pad.start and/or pad.end is F and the intersection is empty then
     NULL is returned and a warning is issued if warn=T.

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

     A time series object

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

     `tfwindow', `trim.na', `splice'

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

     tbind(    ts(matrix(rnorm(24),24,1), start=c(1986,1), frequency=4),
         ts(matrix(rnorm(6),  6,1), start=c(1986,1), frequency=4))

