-
Notifications
You must be signed in to change notification settings - Fork 373
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
docs for aggregation over grouped array-like elements #3425
Conversation
src/abstractdataframe/selection.jl
Outdated
@@ -1665,6 +1665,22 @@ julia> combine(gd, :, AsTable(Not(:a)) => sum, renamecols=false) | |||
7 │ 4 1 4 5 | |||
8 │ 4 1 8 9 | |||
``` | |||
|
|||
# aggregation over array-like elements |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not aggregation specific. @nalimilan - what would be the best comment here?
Maybe:
# protecting vectors returned from a function from being expanded into multiple rows
(but it seems long, but maybe it is OK)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @nalimilan, do you have any suggestions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this is explicit enough?
# protecting returned vectors from being expanded into multiple rows
Thank you! |
Demonstrate how to aggregate over grouped array-like elements. (#3424)