-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to handle multiple forecasts from the same model? #110
Comments
Hmmm... we could support differing key structures between the mable and Do you think that producing forecasts with different xregs will be a common use? I would think that forecasting with xregs will usually be used if the future is known or easily forecastable, and so only one set of xregs would be provided. |
This is very common in scenario forecasting where different scenarios are used for the new data. Currently new_data is a tsibble with the same keys as the original data. We could allow the user to add keys (or one new key?) to the new_data object, and each combination of new keys leads to a new forecast. |
From discussions at the ISI WSC, one somewhat safe approach would be to allow a |
I think using the key structure for this is the wrong approach. Instead allowing users to provide a (potentially named) list of scenarios would be better. We could also wrap this up into a |
Here is an example:
Having to manually
rbind
these results is not ideal (andbind_rows
won't work).Also, the
as_fable()
needs the response variable re-specified when it should already have that information. We are just adding a key.The text was updated successfully, but these errors were encountered: