-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
groupby() with concat() result columns can't be added #878
Comments
Thanks @ecoughlan, you are right that it is setting a multi-index on the columns. When As a side note, Thanks again for posting! |
* Resolves modin-project#878 * Create a `SeriesGroupBy` object that intercepts every call to the `SeriesGroupBy` object, applies it to the pandas object, then re-distributes the object if it is a `pandas.Series` or a `pandas.DataFrame`. This is a temporary measure until we can implement a `SeriesGroupBy` object with all of the methods. * This issue originally surfaced with issues handling interactions between pandas and modin Series objects. * A further pass is required to remove other cases where Modin can return a pandas object.
@ecoughlan a quick update: This issue happened because the |
…#908) * Create SeriesGroupBy wrapper to default to pandas and return to Modin * Resolves #878 * Create a `SeriesGroupBy` object that intercepts every call to the `SeriesGroupBy` object, applies it to the pandas object, then re-distributes the object if it is a `pandas.Series` or a `pandas.DataFrame`. This is a temporary measure until we can implement a `SeriesGroupBy` object with all of the methods. * This issue originally surfaced with issues handling interactions between pandas and modin Series objects. * A further pass is required to remove other cases where Modin can return a pandas object. * Add tests * Lint
System information
Describe the problem
Cannot add a combination of results to a DF composed of grouped results.
Source code / logs
doesn't work because the subtraction results in two columns being returned with modin vs one in pandas, probably something is mixed up with a multi-index on the columns.
The text was updated successfully, but these errors were encountered: