Skip to content
Prev 163598 / 398506 Next

question about the tisPlot function in package tis

The development version of zoo has a tis to zoo conversion function
that would allow you to plot your data using plot.zoo and xplot.zoo
in which case you can use classic graphics axis function (for plot.zoo)
or lattice facilities (with xyplot.zoo):

source("http://r-forge.r-project.org/plugins/scmsvn/viewcvs.php/*checkout*/pkg/R/as.zoo.tis.R?rev=524&root=zoo")
z <- as.zoo(dat, class = "yearmon")
plot(dat)
xyplot(dat)

There are many examples at ?plot.zoo and ?xyplot.zoo and
in the three zoo vignettes.
On Tue, Dec 2, 2008 at 1:49 PM, <Kyle.Matoba at sf.frb.org> wrote: