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
Recent PR (#6206 and #6143) changed agg and update_by formula methods to accept multiple columns as input but limited the operators to a single input formula (e.g. agg.formula(formula="out_b=min(X)")). It would be useful to specify multiple formula as a list and create multiple output column with a single call.
The new syntax would be agg.formula(formula=["out_b=min(X)", "out_c=sum(x) + min(y)"]) allowing the user to easily specify either a single formula or a list.
The text was updated successfully, but these errors were encountered:
Recent PR (#6206 and #6143) changed
agg
andupdate_by
formula methods to accept multiple columns as input but limited the operators to a single input formula (e.g.agg.formula(formula="out_b=min(X)")
). It would be useful to specify multiple formula as a list and create multiple output column with a single call.The new syntax would be
agg.formula(formula=["out_b=min(X)", "out_c=sum(x) + min(y)"])
allowing the user to easily specify either a single formula or a list.The text was updated successfully, but these errors were encountered: