I receive a warning message while running the following code in 13.4Prediction combination, how can I solve it?Thanks very munch
cafe_futures <- cafe_models |>
-
Generate 1000 future sample paths
- generate(h = "5 years", times = 1000) |>
-
Compute forecast distributions from future sample paths
- as_tibble() |>
- group_by(Month, .model) |>
- summarise(
-
dist = distributional::dist_sample(list(.sim))
- ) |>
- ungroup() |>
-
Create fable object
- as_fable(index = Month, key = .model,
-
distribution = dist, response = "Turnover")
summarise()
has grouped output by 'Month'. You can override using the .groups
argument.
Warning message :
The dimnames of the fable's distribution are missing and have been set to match the response variables.
Referred here by Forecasting: Principles and Practice, by Rob J Hyndman and George Athanasopoulos