predict_forecast_data() generates a prediction vector from a forecast object
and full data frame, putting this prediction back into the data frame.
Usage
predict_forecast_data(
df,
forecast_obj,
sort_col,
sort_descending,
pred_col,
pred_upper_col,
pred_lower_col
)Arguments
- df
Data frame of model data.
- forecast_obj
Object of class
forecastthat is output from theforecast::family of functions.- sort_col
Column name(s) to use to
dplyr::arrange()the data prior to supplying type and calculating mean absolute scaled error on data involving time series. IfNULL, not used. Defaults to"year".- sort_descending
Logical value on whether the sorted values from
sort_colshould be sorted in descending order. Defaults toFALSE.- pred_col
Column name to store predicted value.
- pred_upper_col
Column name to store upper bound of confidence interval generated by the
predict_...function. This stores the full set of generated values for the upper bound.- pred_lower_col
Column name to store lower bound of confidence interval generated by the
predict_...function. This stores the full set of generated values for the lower bound.
