-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
DEPR: deprecate cols / change to subset in duplicated/drop_duplicates #6680
Comments
In working on this, the only unit tests I could find for duplicated where in pandas/tseries/tests/test_timeseries.py. Shouldn't there be some tests in pandas/tests/test_frame.py? Regardless, where would you like to see the unit test the verifies the warnings are errors are raised as expected? |
Also, can I please assigned to this so I can convert this issue into a pr? Thanks. |
go ahead hmm should be some tests for duplicated/drop_duplicates in test_frame if not prob just the underlying routines see tested pls add a suite of tests (including the depr warning tests) thanks |
closed by #6693 |
…ted() and DataFrame.drop_duplicates(), xref pandas-dev#6680
DEPR: Removal of cols keyword in favor of subset in DataFrame.duplicated() and DataFrame.drop_duplicates(), xref #6680 Author: Jeff Reback <jeff@reback.net> Closes #12165 from jreback/deprecate and squashes the following commits: 5be6dc6 [Jeff Reback] DOC: small fix on Timestamp doc-string e3579a5 [Jeff Reback] DEPR: Removal of cols keyword in favor of subset in DataFrame.duplicated() and DataFrame.drop_duplicates(), xref #6680
for consistency with
dropna
(and also to not usecols
which is being deprecated)related #6645
The text was updated successfully, but these errors were encountered: