home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / window < prev    next >
Encoding:
Text File  |  1997-04-23  |  659 b   |  30 lines

  1.     
  2.     _T_i_m_e _W_i_n_d_o_w_s
  3.     
  4.          window(x, start, end)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.                x : a time-series or other object.
  9.     
  10.            start : the start time of the period of interest.
  11.     
  12.              end : the end time of the period of interest.
  13.     
  14.     _D_e_s_c_r_i_p_t_i_o_n:
  15.     
  16.          window is a generic function which extracts the subset
  17.          of the object x observed between the times start and
  18.          end.  Methods are available for time series and point-
  19.          processes.
  20.     
  21.     _S_e_e _A_l_s_o:
  22.     
  23.          time, ts.
  24.     
  25.     _E_x_a_m_p_l_e_s:
  26.     
  27.          data(presidents)
  28.          sixties <- window(presidents, 1960, c(1969,4))
  29.     
  30.