We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Modifying the partition-by section of an over-clause is currently only possible with group_by/ungroup:
tbl >> group_by(a,b,c) >> mutate(agg_col=tbl.x.max()) >> ungroup() >> mutate(y=tbl.x - λ.agg_col)
It would be much nicer to configure this the same way as the order-by part of window functions:
tbl >> mutate(y=tbl.x - tbl.x.max(grouped=[a,b,c]))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Modifying the partition-by section of an over-clause is currently only possible with group_by/ungroup:
It would be much nicer to configure this the same way as the order-by part of window functions:
The text was updated successfully, but these errors were encountered: