Description Usage Arguments Details Value
Preprocess a time-series
1 | ts_preprocess(x, technique_list = list())
|
x |
Input time-series |
technique_list |
List of the techniques. See details. |
Each technique is itself a list of list("techninque name", param1, param2, ...)
.
Available techniques include:
"diff"Differencing the time-series. Parameter can be a number, "kpss", "adf", or "auto".
"boxcox"Box-cox transform. Parameter can be a numeric lambda, or "auto".
"log"Log transform. Only works if time-series is positive.
"log_abs"Log transform on absolute value. Destroys values between -1 and 1.
"log+min"Log transform on (x - min(x) + 1)
A list
x
Preprocessed xts
technique_list
List of techniques with their explicit parameters
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.