View source: R/bimets_ts_functions.R
TSDELTA | R Documentation |
This function returns the O
-order, L
-lag differences of the input time series.
TSDELTA(x = NULL, L = 1, O = 1, avoidCompliance = FALSE, ...)
x |
Input time series that must satisfy the compliance control check defined in |
L |
Lag. |
O |
Order of the difference. |
avoidCompliance |
If |
... |
Backward compatibility. |
This function returns a BIMETS time series.
TSDELTAP
TSDELTALOG
TSLAG
MOVAVG
INTS
CUMSUM
#random TS
n<-10
xArr<-rnorm(n)
ts1<-TSERIES(xArr,START=c(2000,1),FREQ='A')
TABIT(ts1,TSDELTA(ts1,1,1),TSDELTA(ts1,1,2),TSDELTA(ts1,1,3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.