powered by
Take the lagged first difference of a series
ldshift(x, l)
the lagged differenced series
a series to be differenced
the number of lags
Soren Jordan and Andrew Q. Philips
ldshift assumes that the series are ordered, that there is no missing data, and that the time intervals are even
ldshift
x.var <- runif(50) ld.1.x.var <- ldshift(x.var, 1) ld.2.x.var <- ldshift(x.var, 2) head(x.var) head(ld.1.x.var) head(ld.2.x.var)
Run the code above in your browser using DataLab