Learn R Programming

dynamac (version 0.1.12)

dshift: Take first difference of a series

Description

Take first difference of a series

Usage

dshift(x)

Value

the differenced series

Arguments

x

a series to be differenced

Author

Soren Jordan and Andrew Q. Philips

Details

dshift assumes that the series are ordered, that there is no missing data, and that the time intervals are even

Examples

Run this code
x.var <- seq(0, 50, 5)
d.x.var <- dshift(x.var)
head(x.var)
head(d.x.var)

Run the code above in your browser using DataLab