| zoo {zoo} | R Documentation |
zoo is the creator for an S3 class of indexed
totally ordered observations which includes irregular
time series.
zoo(x, order.by)
x |
a vector or matrix. |
order.by |
a vector by which the observations in x
are ordered. |
zoo is still under development, but it provides plot
and index (or time) methods for "zoo" objects
and can convert "ts" and "irts" objects with
as.zoo.
The vector of indexes order.by can be of arbitrary class,
but it is essential that order(order.by) works. For other
functions it is assumed that c(), length() and subsetting
[, work.
A vector or matrix with an "index" attribute of the same
dimension (NROW(x)) by which x is ordered.
x.date <- as.POSIXct(paste("2003-02-", c(1, 3, 7, 9, 14), sep = ""))
x <- zoo(rnorm(5), x.date)
plot(x)
time(x)
x[1:3]