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
Currently warnings are only emitted when the length of a tuple is greater than 1. From this comment in PR where the deprecation was implemented, there was some confusion as to the behavior of df.groupby('a')['b'] vs df.groupby('a')[('b', )]. The former is the SeriesGroupBy that the comment refers to where key is a string, the latter should still be deprecated.