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
Address pandas warning about deprecated DataFrameGroupBy.apply default (#7235)
* Address pandas warning about deprecated DataFrameGroupBy.apply default
The current default is to pass grouping columns to the apply function,
which in our case does not use them at all. Here we exclude them with
`include_groups=False` adopting the new behavior.
Adding temporary check that the new output is the same.
* Clean up temporary assertion (all tests passed)
0 commit comments