Skip to content
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

Create SeriesGroupBy wrapper to default to pandas and return to Modin #908

Merged
merged 3 commits into from
Dec 17, 2019

Commits on Dec 13, 2019

  1. Create SeriesGroupBy wrapper to default to pandas and return to Modin

    * 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.
    devin-petersohn committed Dec 13, 2019
    Configuration menu
    Copy the full SHA
    ec423cb View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2019

  1. Add tests

    devin-petersohn committed Dec 14, 2019
    Configuration menu
    Copy the full SHA
    722b2e7 View commit details
    Browse the repository at this point in the history
  2. Lint

    devin-petersohn committed Dec 14, 2019
    Configuration menu
    Copy the full SHA
    9059264 View commit details
    Browse the repository at this point in the history