Implement timeSeriesDerivToGrid and timeSeriesPredictLinearToGrid#84328
Merged
vitlibar merged 8 commits intoClickHouse:masterfrom Aug 6, 2025
Conversation
Contributor
vitlibar
reviewed
Aug 1, 2025
src/AggregateFunctions/AggregateFunctionTimeseriesLinearRegression.h
Outdated
Show resolved
Hide resolved
…se Float64 for DateTime64 predict_linear case, update FORMAT_VERSION
vitlibar
approved these changes
Aug 5, 2025
Member
Merged
via the queue into
ClickHouse:master
with commit Aug 6, 2025
07bcfab
120 of 124 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Aggregate functions
timeSeriesDerivToGridandtimeSeriesPredictLinearToGrid.Behaves similarly to
timeSeriesRateToGrid, accepting parameters for start timestamp, end timestamp, step, and look back window (predict_linear accepting an additional predict_offset parameter), as well as two arguments for the timestamps and values.Returns a derivative or prediction value using least-square linear regression, calculated on samples in the specified window for each timestamp in the time grid defined by the parameters. The return type is
Array(Nullable(Float64)).Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes into CHANGELOG.md):
timeSeriesDerivToGridandtimeSeriesPredictLinearToGridaggregate functions to re-sample data to a time grid defined by the specified start timestamp, end timestamp, and step; calculates PromQL-likederivandpredict_linear, respectively.Documentation entry for user-facing changes