window               package:fCalendar               R Documentation

_T_i_m_e _W_i_n_d_o_w_s

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

     Extract the subset of a 'timeDate' object observed between  two
     time stamps.

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

     ## S3 method for class 'timeDate':
     window(x, start , end, ...)

     ## S3 method for class 'timeDate':
     cut(x, from , to, ...)

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

from, to: starting date, required, and end date, ptional. If supplied 
          'to' must be after 'from'. 

start, end: starting date, required, and end date, ptional. If supplied
           'to' must be after 'from'. 

       x: an object of class 'timeDate'. 

     ...: arguments passed to other methods. 

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

     returns an object of class 'timeDate'.

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

       
     ## timeCalendar - 
        # Monthly Dates in Current Year:
        tS = timeCalendar()
        tS 
        
     ## window -
        # 2nd Quarter Window:
        tS[4:6]
        window(tS, tS[4], tS[6])

