Learn R Programming

aion (version 1.4.0)

window: Time Windows

Description

Extracts the subset of the object x observed between the times start and end (expressed in rata die).

Usage

# S4 method for TimeSeries
window(x, start = NULL, end = NULL, ...)

Value

A TimeSeries object.

Arguments

x

A TimeSeries object.

start

A length-one numeric vector specifying the start time of the period of interest.

end

A length-one numeric vector specifying the end time of the period of interest.

...

Currently not used.

Author

N. Frerebeau

See Also

Other tools: span(), start(), time()

Examples

Run this code
## 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))

Run the code above in your browser using DataLab