You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The overall goal of this issue is to enable grouping temporal rows by discrete non-overlapping "windows" (e.g. every minute starting from epoch time).
This can be enabled by providing a function that assigns each datetime value into discrete buckets ("windows") of datetimes, represented by the starting datetime of that window.
The text was updated successfully, but these errors were encountered:
jaychia
added
p0
Priority 0 - to be addressed immediately
p1
Important to tackle soon, but preemptable by p0
and removed
p0
Priority 0 - to be addressed immediately
labels
Apr 11, 2024
jaychia
changed the title
Add support for more sophisticated "bucketing" groupby mechanisms for temporal types
Add support for "tumbling windows" of temporal types during groupbys
Apr 11, 2024
jaychia
changed the title
Add support for "tumbling windows" of temporal types during groupbys
Add support for "tumbling windows" of temporal types
Apr 11, 2024
jaychia
changed the title
Add support for "tumbling windows" of temporal types
Add support for discretizing temporal types
Apr 11, 2024
jaychia
changed the title
Add support for discretizing temporal types
Add support for discretizing temporal types, providing "tumbling window groupby" functionality
Apr 11, 2024
Closes#2107
This PR adds a method to truncate the datetime column to the specified
interval e.g. "1 day".
Valid time units are: 'microsecond', 'millisecond', 'second', 'minute',
'hour', 'day', 'week'.
Optional start time for truncation. If provided, truncation will be done
from this start time, otherwise truncation will be done from the
beginning of the epoch.
Is your feature request related to a problem? Please describe.
The overall goal of this issue is to enable grouping temporal rows by discrete non-overlapping "windows" (e.g. every minute starting from epoch time).
This can be enabled by providing a function that assigns each datetime value into discrete buckets ("windows") of datetimes, represented by the starting datetime of that window.
The above expression should return the timestamp of the start of the window that each row falls into.
See also:
The text was updated successfully, but these errors were encountered: