tfplot                package:tframe                R Documentation

_P_l_o_t _T_f_r_a_m_e_d _O_b_j_e_c_t_s

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

     Plot tframe or tframed objects.

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

         tfplot(obj, ...)

         tfplot(..., xlab=NULL, ylab=NULL, graphs.per.page = 5,
                              start.=NULL, end.=NULL,
                  series=seq(nseries(list(...)[[1]])), mar=par()$mar)

         tfOnePlot(obj, xlab=NULL, ylab=NULL, start.=NULL, end.=NULL, ...)

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

     obj: a tframe or tframed object to plot.

     ...: any additional tframe or tframed objects for the same plot.

graphs.per.page: integer indicating number of graphs to place on a
          page.

    xlab: string to use for x label (passed to plot).

    ylab: string to use for y label (passed to plot).

  start.: start of plot. (passed to tfwindow)

    end.: end of plot. (passed to tfwindow)

  series: series to be plotted. (passed to select.series)

     mar: margins passed to plot. See par.)

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

     In many cases these are the same as plot methods.  However, tfplot
     tries to provide an alternate generic mechanism that is consistent
     with the tframe view of the data. This may not always be the
     preferred print and plot method.  Also, new classes of time series
     may define there own plot methods in ways which use a different
     logic from the tframe library. Thus tfplot provides a way to
     program functions which use methods consistent with the tframe
     library logic.

     Note that the start and end arguments to tfplot are "start." and
     "end.". In some situations truncation works and these can be
     abreviated, but often it does not work and the error message is
     opague.

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

     None.

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

     `tfprint' `tframe' `tframed' `print' `plot'

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

         tfplot(ts(rnorm(100), start=c(1982,1), frequency=12))
         tfplot(ts(rnorm(100), start=c(1982,1), frequency=12), start.=c(1985,6))

