tfplot {tframe}R Documentation

Plot Tframed Objects

Description

Plot tframe or tframed objects.

Usage

    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, ...)

Arguments

... A tframe or tframed object or objects to plot.

Details

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.

Value

None.

See Also

tfprint tframe tframed print plot

Examples

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