-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
BUG: groupby.describe on a frame with duplicate column names #50846
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
Merged
mroeschke
merged 34 commits into
pandas-dev:main
from
rhshadrach:groupby_select_obj_dup_cols
Feb 3, 2023
Merged
Changes from 28 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
aa9c9e1
REF: groupby Series selection with as_index=False
rhshadrach 7d00d07
GH#
rhshadrach fd62b4e
Merge branch 'main' of https://github.com/pandas-dev/pandas into seri…
rhshadrach c0891db
Merge branch 'main' into series_as_index_false
rhshadrach 6bcfb12
Merge branch 'main' of https://github.com/pandas-dev/pandas into seri…
rhshadrach 41399ad
type-hinting fixes
rhshadrach c26957d
WIP
rhshadrach f2b538e
Merge branch 'main' of https://github.com/pandas-dev/pandas into owe_…
rhshadrach 1860c4d
WIP
rhshadrach e42e222
WIP
rhshadrach 0bdf009
BUG: groupby.describe on a frame with duplicate column names
rhshadrach 185e4f8
cleanup
rhshadrach d2b965f
test fixup
rhshadrach 932e3c8
Fix type-hint for _group_selection
rhshadrach 5139df8
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 8f132cd
Merge branch 'groupby_select_obj_dup_cols' of https://github.com/rhsh…
rhshadrach eeea6fc
Merge branch 'groupby_select_obj_dup_cols' of https://github.com/rhsh…
rhshadrach feb6661
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 83f12b7
Speedup
rhshadrach c37a1ab
refinement
rhshadrach 973b893
Merge branch 'main' into groupby_select_obj_dup_cols
rhshadrach 78a3d5f
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 4dafe5a
cleanup, faster implementation
rhshadrach 0959c1b
Merge branch 'main' into groupby_select_obj_dup_cols
rhshadrach 2fc97b2
Merge branch 'main' into groupby_select_obj_dup_cols
rhshadrach d5df78c
Make group_selection a Boolean flag
rhshadrach 62bb1fb
Merge branch 'groupby_select_obj_dup_cols' of https://github.com/rhsh…
rhshadrach 8d6df54
Avoid resetting cache
rhshadrach 62540af
Improve test
rhshadrach f7a6973
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 615d9c6
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 88a9ec9
Merge branch 'main' of https://github.com/pandas-dev/pandas into grou…
rhshadrach 359d7ff
Rework test
rhshadrach d1d2610
Merge branch 'groupby_select_obj_dup_cols' of https://github.com/rhsh…
rhshadrach File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: can you avoid chaining take/gropby/getattr here (and in L1639)? easier to grok if something goes wrong
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.