predict.foreccomb_res {ForecastComb} | R Documentation |
Prediction function for Forecast Combinations
Description
prediction
method for class ‘foreccomb_res’. Uses the previously created forecast combination
result to predict the combination for a newly provided prediction dataset.
Usage
## S3 method for class 'foreccomb_res'
predict(object, newpreds, newobs = NULL,
simplify = TRUE, byrow = FALSE, ...)
Arguments
object |
An object of class 'foreccomb'. Contains training set (actual values + matrix of model forecasts) and optionally a test set. |
newpreds |
A matrix or multivariate time series; contains individual model forecasts if a test set is used (optional). Does not
require specification of |
newobs |
A vector or univariate time series; contains ‘actual values’ if a test set is used (optional). |
simplify |
logical. The default ( |
byrow |
logical. The default ( |
... |
potential further arguments (require by generic) |
Author(s)
Christoph E. Weiss and Gernot R. Roetzer
See Also
Examples
obs <- rnorm(100)
preds <- matrix(rnorm(1000, 1), 100, 10)
train_o<-obs[1:80]
train_p<-preds[1:80,]
test_o<-obs[81:100]
test_p<-preds[81:100,]
data<-foreccomb(train_o, train_p)
fit<-comb_BG(data)
predict(fit, test_p)