tframe                package:tframe                R Documentation

_E_x_t_r_a_c_t _o_r _S_e_t _a _T_f_r_a_m_e

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

     The first usage extracts the tframe from a tframed object.  These
     are generic functions. The default method attempts to build a
     tframe for time series, matrix, or array which is not tframed. The
     second usage assigns the tframe to an object.

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

         tframe(x)
         tframe(x)
         tframe(x)
         tframe(x)
         tframe(x)

         tframe(x) <- tf
         is.tframe(tf)

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

       x: A tframed object or an object to be tframed.

      tf: A tframe.

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

     The first usage returns the tframe of a tframed object. The second
     usage sets the tframe of an object.

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

     A tframe.

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

     `tframed'

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

         z <- tframe(ts(rnorm(100), start=c(1982,1), frequency=12))
         is.tframe(z)

