-
Notifications
You must be signed in to change notification settings - Fork 368
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
filter and broadcasting for GroupedDataFrame #2194
Comments
just ran into the need to filter groups on my first foray into Julia. It actually looks impossible to hack together something myself (based on my three days' experience with the language, so I'm probably wrong here) so it would be nice to see this included as a function. |
It is not that hard - just use
and the result is a
or (this syntax will be available soon and will be faster):
is more convenient. |
ah, thanks for the workaround! no offence taken if you want to clean up my comments to this issue to keep it clean :) |
Actually thank you for commenting - we need end user feedback. |
This can be done post 1.0, but I think we are ready to decide that
GroupedDataFrame
is a collection ofSubDataFrames
, so:filter
to it (question just asked on Slack)GroupedDataFrame
- here the only decision would be if the result of such broadcasting operation should be aVector
or aGroupedDataFrame
(both make sense in different contexts; I tend to prefer aVector
asmap
already gives an option withGroupedDataFrame
).The text was updated successfully, but these errors were encountered: