feat_spectral {feasts} | R Documentation |
Spectral features of a time series
Description
Computes spectral entropy from a univariate normalized spectral density, estimated using an AR model.
Usage
feat_spectral(x, .period = 1, ...)
Arguments
x |
a univariate time series |
.period |
The seasonal period. |
... |
Further arguments for |
Details
The spectral entropy equals the Shannon entropy of the spectral density
of a stationary process
:
where the density is normalized such that
.
An estimate of
can be obtained using
spec.ar
with
the burg
method.
Value
A non-negative real value for the spectral entropy .
Author(s)
Rob J Hyndman
References
Jerry D. Gibson and Jaewoo Jung (2006). “The Interpretation of Spectral Entropy Based Upon Rate Distortion Functions”. IEEE International Symposium on Information Theory, pp. 277-281.
Goerg, G. M. (2013). “Forecastable Component Analysis”. Journal of Machine Learning Research (JMLR) W&CP 28 (2): 64-72, 2013. Available at https://proceedings.mlr.press/v28/goerg13.html.
See Also
Examples
feat_spectral(rnorm(1000))
feat_spectral(lynx)
feat_spectral(sin(1:20))