Description Usage Arguments Value Examples
Auxiliary function for the combined forecasting method. From https://github.com/M4Competition/M4-methods/blob/master/Benchmarks%20and%20Evaluation.R
1 | combinedBenchmark(input, h, level = c(80, 95))
|
input |
|
h |
|
level |
|
h-step forecast for the combined forecasting method (numeric vector - length h)
1 2 3 4 5 | x <- AirPassengers
splitting_point <- round(2*length(x)/3)
x_train <- x[1:splitting_point]
h <- 5
x_hat <- combinedBenchmark(x_train,h)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.