diff.quantities: Lagged Differences

View source: R/misc.R

diff.quantitiesR Documentation

Lagged Differences

Description

S3 method for quantities objects (see diff).

Usage

## S3 method for class 'quantities'
diff(x, lag = 1L, differences = 1L, ...)

Arguments

x

a numeric vector or matrix containing the values to be differenced.

lag

an integer indicating which lag to use.

differences

an integer indicating the order of the difference.

...

further arguments to be passed to or from methods.

Examples

diff(set_quantities(1:10, m/s, 0.1), 2)
diff(set_quantities(1:10, m/s, 0.1), 2, 2)
x <- cumsum(cumsum(set_quantities(1:10, m/s, 0.1)))
diff(x, lag = 2)
diff(x, differences = 2)


quantities documentation built on April 26, 2023, 5:11 p.m.