chart_forecast_error: Chart forecast errors

Description Usage Arguments Value Examples

View source: R/forecast_chart.R

Description

Chart forecast errors

Usage

1
chart_forecast_error(Data, Title, Ylab, Freq, zeroline = FALSE)

Arguments

Data

data.frame: oos.forecast object

Title

string: chart title

Ylab

string: y-axis label

Freq

string: frequency (acts as sub-title)

zeroline

boolean: if TRUE then add a horizontal line at zero

Value

ggplot2 chart

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 # 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'
   )

 # chart forecast errors
 chart.errors =
   chart_forecast_error(
     forecasts,
     Title = 'test',
     Ylab = 'Index',
     Freq = 'Monthly',
     zeroline = TRUE)

tylerJPike/OOS documentation built on March 20, 2021, 3:20 a.m.