tfExpand               package:tframe               R Documentation

_E_x_p_a_n_d _a _T_f_r_a_m_e _o_r _T_f_r_a_m_e_d _O_b_j_e_c_t.

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

     Expand a tframe or tframed object.

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

         tfExpand(x, add.start = 0, add.end = 0)
         ## Default S3 method:
         tfExpand(x, add.start = 0, add.end = 0)
         ## S3 method for class 'tframe':
         tfExpand(x, add.start = 0, add.end = 0)

         tfTruncate(x, start=NULL, end=NULL)
         ## Default S3 method:
         tfTruncate(x, start=NULL, end=NULL)
         ## S3 method for class 'tframe':
         tfTruncate(x, start=NULL, end=NULL)

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

       x: A tframe or tframed object.

   start: an integer indicating the position at which the new tframe is
          to start.

     end: an integer indicating the position at which the new tframe is
          to end.

add.start: an integer indicating the number of periods on the
          beginning.

 add.end: an integer indicating the number of periods on the end.

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

     These methods are like tfwindow but use position indicators
     (rather  than dates) and work with a tframe or tframed data.
     Applied to a tframe they return an adjusted tframe. Applied to a
     tframed object they return an adjusted object with its adjusted
     tframe.They are low level utilities for other functions.

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

     A tframe or tframed object.

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

     'tfwindow' 'tframed'

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

         z <- ts(rnorm(100), start=c(1982,1), frequency=12)
         Dz <- tframed(diff(z), tfTruncate(tframe(z), start=2))
         tframe(Dz)
         IDz <- tframed(cumsum(c(0, Dz)), tfExpand(tframe(Dz), add.start=1))
         tframe(IDz)
         tframe(tfTruncate(z, start=5))

