make_future
converts the forecasts from a fable
to a future_frame
. A future_frame
is a tibble with a
standardized format and contains the columns:
index_id
: Date-time index as specified incontext
.series_id
: Unique identifier for the time series as specified incontext
.model
: Character value. The forecasting model.split
: Integer value. The number of the train data split.horizon
: The forecast horizon as integer.point
: The point forecast as numeric value.
Arguments
- fable
A
fable
created viafabletools::forecast()
.- context
A named
list
with the identifiers forseried_id
,value_id
andindex_id
.