8000 BUG: Fix wrong column selection in drop_duplicates when duplicate column names by Licht-T · Pull Request #17879 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: Fix wrong column selection in drop_duplicates when duplicate column names #17879

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
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC: Add whatsnew note for fixing the bug of drop_duplicates
  • Loading branch information
Licht-T committed Oct 15, 2017
commit 30c7e1b0bf8d651ef47bf5ce7c17db2f3b76452a
1 change: 1 addition & 0 deletions doc/source/whatsnew/v0.21.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,7 @@ Reshaping
- Bug in :func:`concat` where order of result index was unpredictable if it contained non-comparable elements (:issue:`17344`)
- Fixes regression when sorting by multiple columns on a ``datetime64`` dtype ``Series`` with ``NaT`` values (:issue:`16836`)
- Bug in :func:`pivot_table` where the result's columns did not preserve the categorical dtype of ``columns`` when ``dropna`` was ``False`` (:issue:`17842`)
- Bug in ``DataFrame.drop_duplicates`` where dropping with non-unique column names raised a ``ValueError`` (:issue:`17836`)

Numeric
^^^^^^^
Expand Down
0