Skip to content
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

windows: Support multi-aggregation windows #785

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
415 changes: 415 additions & 0 deletions docs/aggregations.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/groupby.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ what `store_id` it came from) ***over the past hour***.
In this case, we need to get a windowed sum based on a single column identifier: `item`.

This can be done by simply passing the `item` column name to `.groupby()`, followed by
a [`tumbling_window()`](windowing.md#tumbling-windows) [`.sum()`](windowing.md#min-max-mean-and-sum) over the past `3600` seconds:
a [`tumbling_window()`](windowing.md#time-based-tumbling-windows) [`.sum()`](aggregations.md#min-max-mean-and-sum) over the past `3600` seconds:

```python
sdf = StreamingDataFrame()
Expand Down
Loading