We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per comment in PR #41985 : https://github.com/pandas-dev/pandas/pull/41985/files/c14bca375fc1f88b0ebc3fdf9d94bab568d1066a#r672213029
PR updated the docs, which reflected that pandas.core.algorithms.duplicated() does accept a Series as an argument:
pandas.core.algorithms.duplicated()
Series
>>> import pandas as pd >>> from pandas.core.algorithms import duplicated >>> s=pd.Series([1,2,3,4,2,3,1]) >>> duplicated(s) array([False, False, False, False, True, True, True])
So the input type should be updated.
The text was updated successfully, but these errors were encountered:
core.algorithms.duplicated
Successfully merging a pull request may close this issue.
Per comment in PR #41985 :
https://github.com/pandas-dev/pandas/pull/41985/files/c14bca375fc1f88b0ebc3fdf9d94bab568d1066a#r672213029
PR updated the docs, which reflected that
pandas.core.algorithms.duplicated()
does accept aSeries
as an argument:So the input type should be updated.
The text was updated successfully, but these errors were encountered: