tsutils (version 0.9.0)

lagmatrix: Create lead/lags of a variable

Description

Create an array with lead/lags of an input variable.

Usage

lagmatrix(x, lag)

Arguments

x

input variable.

lag

vector of leads and lags. Positive numbers are lags, negative are leads. O is the original x.

Value

An array with the resulting leads and lags (columns).

Examples

Run this code
# NOT RUN {
  x <- rnorm(10)
  lagmatrix(x,c(0,1,-1))

# }

Run the code above in your browser using DataLab