Description Usage Arguments Value Examples
View source: R/forecast_metrics.R
A function to calculate various loss functions, including MSE, RMSE, MAE, and MAPE.
1 | forecast_accuracy(Data)
|
Data |
data.frame: data frame of forecasts, model names, and dates |
data.frame of numeric error results
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # simple time series
A = c(1:100) + rnorm(100)
date = seq.Date(from = as.Date('2000-01-01'), by = 'month', length.out = 100)
Data = data.frame(date = date, A)
# run forecast_univariate
forecast.uni =
forecast_univariate(
Data = Data,
forecast.dates = tail(Data$date,10),
method = c('naive','auto.arima', 'ets'),
horizon = 1,
recursive = FALSE,
freq = 'month')
forecasts =
dplyr::left_join(
forecast.uni,
data.frame(date, observed = A),
by = 'date'
)
# forecast accuracy
forecast.accuracy = forecast_accuracy(forecasts)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.