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
Hi, I am seeing a difference in behavior on this groupby between Pandas 0.13.1 and 0.15.2. Specifically, it's like 0.15.2 is doing a cross join while 0.13.1 isn't.
basically, the same matrix, but with extra cross NaN entries.
We're wondering if this behavior is intentional, or a bug. It wasn't entirely clear from the set of release notes that the groupby behavior changed so much.
The text was updated successfully, but these errors were encountered:
the resulting resulting cartesian product of the indices (e.g. the nan entries), were a bug in 0.15+ (maybe only in 0.15.2), and are fixed in 0.16.0 (coming soon), fixed in #9177
Hi, I am seeing a difference in behavior on this groupby between Pandas 0.13.1 and 0.15.2. Specifically, it's like 0.15.2 is doing a cross join while 0.13.1 isn't.
0.13.1 produces:
while 0.15.2 produces
basically, the same matrix, but with extra cross NaN entries.
We're wondering if this behavior is intentional, or a bug. It wasn't entirely clear from the set of release notes that the groupby behavior changed so much.
The text was updated successfully, but these errors were encountered: