TSDELTALOG {bimets}R Documentation

Time Series Lag Logarithmic Differences

Description

This function returns the L-lag logarithmic differences of the input time series.

Usage

TSDELTALOG(x = NULL, L = 1,  avoidCompliance = FALSE, ...)

Arguments

x

Input time series that must satisfy the compliance control check defined in is.bimets.

L

Lag.

avoidCompliance

If TRUE, compliance control check of input time series will be skipped. See is.bimets

...

Backward compatibility.

Value

This function returns a BIMETS time series.

See Also

TSDELTAP
TSLAG
MOVAVG
INTS
CUMSUM

Examples


	#sequence TS
	n<-10
	ts1<-TSERIES(1:n,START=c(2000,1),FREQ='A')
	TABIT(ts1,TSDELTALOG(ts1,1))

[Package bimets version 3.0.2 Index]