| window {aion} | R Documentation |
Time Series Windows
Description
Extracts the subset of the object x observed between the times start and
end (expressed in rata die).
Usage
## S4 method for signature 'TimeSeries'
window(x, start = NULL, end = NULL)
Arguments
x |
A |
start |
A length-one |
end |
A length-one |
Value
A TimeSeries object.
Author(s)
N. Frerebeau
See Also
Other time series tools:
data.frame,
series(),
span(),
start(),
time()
Examples
## Create 3 time-series of 100 observations
## Sampled every years starting from 1000 CE
(x <- series(matrix(rnorm(300), 100, 3), time = 1000:1099, calendar = CE()))
## Subset between 1025 and 1050 CE
(y <- window(x, start = 374009, end = 383140))
[Package aion version 1.0.4 Index]