-
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
Future of colwise #1595
Comments
I'm not sure these two methods are very useful. Since they return arrays, they don't include any information about the names of applied functions or about the groups. Anyway this behavior is easy to get using array comprehensions. Typically, when applying a function on each group, you want the grouping column to be able to interpret the result, so you'd use |
I would deprecate Users can use |
Yes, let's deprecate it! |
Following #1590 (comment) I would like to discuss here what we should do with
colwise
function.Now its basic form
colwise(f, df)
is the same asmap(f, columns(df))
, but we have also two additional methods:f
argument (works only for a data frame);How useful do you think those are and is is worth to keep
colwise
defined or should we deprecate it.The text was updated successfully, but these errors were encountered: