Description Usage Arguments Value Author(s) References Examples
Returns range of summary measures of the forecast accuracy. If x
is provided, the function measures out-of-sample forecast accuracy
based on x-f. If x
is not provided, the function produces in-sample accuracy measures of the one-step forecasts based on f["x"]-fitted(f).
All measures are defined and discussed in Hyndman and Koehler (2006).
1 |
f |
An object of class |
x |
An optional numerical vector containing actual values of the same length as object. |
test |
Indicator of which elements of x and f to test. |
Vector giving forecast accuracy measures.
Rob J Hyndman
Hyndman, R.J. and Koehler, A.B. (2006) "Another look at measures of forecast accuracy". International Journal of Forecasting, 22(4).
1 2 3 4 5 6 7 8 | fit1 <- rwf(EuStockMarkets[1:200,1],h=100)
fit2 <- meanf(EuStockMarkets[1:200,1],h=100)
accuracy(fit1)
accuracy(fit2)
accuracy(fit1,EuStockMarkets[201:300,1])
accuracy(fit2,EuStockMarkets[201:300,1])
plot(fit1)
lines(EuStockMarkets[1:300,1])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.