nathaneastwood / poorman

A poor man's dependency free grammar of data manipulation
https://nathaneastwood.github.io/poorman/
Other
340 stars 15 forks source link

[FEAT] Allow group_by() to create new columns #58

Closed nathaneastwood closed 3 years ago

nathaneastwood commented 3 years ago

For example

mtcars %>% group_by(new_col = am * vs)

Should create a new column, new_col, the result of which the data should be grouped by.