jkrumbiegel / DataFrameMacros.jl

Macros that simplify working with DataFrames.jl
MIT License
61 stars 4 forks source link

Feature Request: allow `@combine` to accept functions #10

Closed xiaodaigh closed 1 year ago

xiaodaigh commented 2 years ago

combine(groupby(df, :grp), nrow) works in DataFrames.jl

but

@combine(groupby(df, :grp), nrow) doesn't produce the right output in DataFrameMacros.jl

jkrumbiegel commented 1 year ago

this now exists as @combine(..., @nrow) so it doesn't interfere with other syntax https://github.com/jkrumbiegel/DataFrameMacros.jl/pull/25