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
Any objections to adding Column.unique to get the unique values in a Column?
It could return another Column with just the unique values.
Why do we need this? From #131 (comment), if we're disallowing iterating over groups, then the workaround is to find the unique values, filter by them, and apply the user-defined function each time
The text was updated successfully, but these errors were encountered:
adding a unique method to columns seems perfectly reasonable to me. I'm not even sure it needs that detailed a rationale - unique is a pretty fundamental operation for dataframe libraries I'd think, and hence having that as a method on both dataframes and columns seems expected.
Any objections to adding
Column.unique
to get the unique values in aColumn
?It could return another
Column
with just the unique values.Why do we need this? From #131 (comment), if we're disallowing iterating over groups, then the workaround is to find the unique values, filter by them, and apply the user-defined function each time
The text was updated successfully, but these errors were encountered: