hotfix/forecast-make-intraday-work: An attempt to make intraday data work with forecast functions #5486
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This might not be the best way to go about it, but it appears to work and would resolve a long-standing issue. The charts are lacking range breaks when intraday, so a bit of love is needed there.
This removes the process which was formatting everything as
%Y-%m-%d
, and changes the frequency setting to default asD
instead ofB
.Before:
After:
This does not work with TimeGPT because it doesn't use the helpers or common params the rest of the menu uses. @DidierRLopes, any insight here how we can get intraday to work there?
Actually found a way to make it work where it resamples to Hourly:
%Y-%m-%d %H%M%S
instead of stripping the time.freq=H
for the command.freq=D
for the command.The TimeGPT command could use a bit of cleanup to make default states and parameters to be like the other models.