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

FEAT-#2375: implementation of multi-column groupby aggregation #2461

Merged
merged 24 commits into from
Dec 8, 2020

Commits on Dec 8, 2020

  1. FEAT-modin-project#2375: draft implementation of multi-column groupby…

    … agg
    
    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    7b3ed3c View commit details
    Browse the repository at this point in the history
  2. FEAT-modin-project#2375: bug fixing

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    fe7cf95 View commit details
    Browse the repository at this point in the history
  3. FEAT-modin-project#2375: code cleaning

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    2ec80ba View commit details
    Browse the repository at this point in the history
  4. FEAT-modin-project#2375: removed unused code

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    5caaa72 View commit details
    Browse the repository at this point in the history
  5. FEAT-modin-project#2375: fix failing lookup for Series objects at Omn…

    …iSci backend
    
    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    74644b5 View commit details
    Browse the repository at this point in the history
  6. FEAT-modin-project#2375: 'try_cast_to_pandas' squeeze parameter added

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    8ad50fb View commit details
    Browse the repository at this point in the history
  7. FEAT-modin-project#2375: fix BaseOnPython tests

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    7a6ac46 View commit details
    Browse the repository at this point in the history
  8. FEAT-modin-project#2375: code cleaning

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    bc921c8 View commit details
    Browse the repository at this point in the history
  9. FEAT-modin-project#2375: 'squeeze' warning fixed

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    fad766d View commit details
    Browse the repository at this point in the history
  10. FEAT-modin-project#2375: revert some changes

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    b030342 View commit details
    Browse the repository at this point in the history
  11. FEAT-modin-project#2375: addressing comments

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    ceb61b0 View commit details
    Browse the repository at this point in the history
  12. FEAT-modin-project#2375: revert some changes

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    4715782 View commit details
    Browse the repository at this point in the history
  13. FEAT-modin-project#2375: fixed cases where aggregation returns Series

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    62f5eb3 View commit details
    Browse the repository at this point in the history
  14. FEAT-modin-project#2375: optimized 'dict-agg' case by adding 'apply_i…

    …ndices' param
    
    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    70d1e4d View commit details
    Browse the repository at this point in the history
  15. FEAT-modin-project#2375: fixed cases when 'func' in 'apply' was built-in

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    9f2cade View commit details
    Browse the repository at this point in the history
  16. FEAT-modin-project#2375: addressing comments

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    835732a View commit details
    Browse the repository at this point in the history
  17. FEAT-modin-project#2375: doc fixing

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    1681ea9 View commit details
    Browse the repository at this point in the history
  18. FEAT-modin-project#2375: added failing tests

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    f233e90 View commit details
    Browse the repository at this point in the history
  19. FEAT-modin-project#2375: bug fixing

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    2321186 View commit details
    Browse the repository at this point in the history
  20. FEAT-modin-project#2375: typo fixes

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    39faca8 View commit details
    Browse the repository at this point in the history
  21. FEAT-modin-project#2375: fixed groupby.size at base backend

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    db5ab68 View commit details
    Browse the repository at this point in the history
  22. FEAT-modin-project#2375: removed unnecessary 'drop' in '_apply_agg_fu…

    …nction'
    
    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    047ec19 View commit details
    Browse the repository at this point in the history
  23. FEAT-modin-project#2375: removed unused code

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    7474170 View commit details
    Browse the repository at this point in the history
  24. FEAT-modin-project#2375: addressing comments

    Signed-off-by: Dmitry Chigarev <dmitry.chigarev@intel.com>
    dchigarev committed Dec 8, 2020
    Configuration menu
    Copy the full SHA
    6558f86 View commit details
    Browse the repository at this point in the history