Description Usage Arguments Details Value References See Also Examples
An estimator for the forecastability Ω(x_t) of a univariate time series x_t. Currently it uses a discrete plug-in estimator given the empirical spectrum (periodogram).
1 2 3 4 5 6 |
series |
a univariate time series; if it is multivariate, then
|
spectrum.control |
list; control settings for spectrum estimation.
See |
entropy.control |
list; control settings for entropy estimation.
See |
mvspectrum.output |
an object of class |
The forecastability of a stationary process x_t is defined as (see References)
Ω(x_t) = 1 - \frac{ - \int_{-π}^{π} f_x(λ) \log f_x(λ) d λ }{\log 2 π} \in [0, 1]
where f_x(λ) is the normalized spectral density of x_t. In particular \int_{-π}^{π} f_x(λ) dλ = 1.
For white noise \varepsilon_t forecastability Ω(\varepsilon_t) = 0; for a sum of sinusoids it equals 100 %. However, empirically it reaches 100\% only if the estimated spectrum has exactly one peak at some ω_j and \widehat{f}(ω_k) = 0 for all k\neq j.
In practice, a time series of length T
has T Fourier frequencies
which represent a discrete
probability distribution. Hence entropy of f_x(λ) must be
normalized by \log T, not by \log 2 π.
Also we can use several smoothing techniques to obtain a less variance estimate of f_x(λ).
A real-value between 0 and 100 (%). 0 means not forecastable (white noise); 100 means perfectly forecastable (a sinusoid).
Goerg, G. M. (2013). “Forecastable Component Analysis”. Journal of Machine Learning Research (JMLR) W&CP 28 (2): 64-72, 2013. Available at http://jmlr.org/proceedings/papers/v28/goerg13.html.
spectral_entropy
, discrete_entropy
,
continuous_entropy
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | nn <- 100
eps <- rnorm(nn) # white noise has Omega() = 0 in theory
Omega(eps, spectrum.control = list(method = "pgram"))
# smoothing makes it closer to 0
Omega(eps, spectrum.control = list(method = "mvspec"))
xx <- sin(seq_len(nn) * pi / 10)
Omega(xx, spectrum.control = list(method = "pgram"))
Omega(xx, entropy.control = list(threshold = 1/40))
Omega(xx, spectrum.control = list(method = "mvspec"),
entropy.control = list(threshold = 1/20))
# an AR(1) with phi = 0.5
yy <- arima.sim(n = nn, model = list(ar = 0.5))
Omega(yy, spectrum.control = list(method = "mvspec"))
# an AR(1) with phi = 0.9 is more forecastable
yy <- arima.sim(n = nn, model = list(ar = 0.9))
Omega(yy, spectrum.control = list(method = "mvspec"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.