Skip to content
Prev 177959 / 398502 Next

How to make a time series object from a data frame containing dates.

In particular,

library(zoo)
z <- zoo(x$alloc_gb, x$month)
plot(z)

See the three zoo vignettes
vignette(package = zoo) # to list them
vignette("zoo") # to show first one

and the help files

library(help = zoo)
?zoo
On Wed, Apr 22, 2009 at 1:07 PM, stephen sefick <ssefick at gmail.com> wrote: