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
The page http://pandas.pydata.org/pandas-docs/dev/generated/pandas.Series.html says:
index : array-like or Index (1d) Values must be unique and hashable, same length as data.
A little bit earlier the same page says:
Labels need not be unique but must be any hashable type.
Other pages also mention non-unique index support (e.g. http://pandas.pydata.org/pandas-docs/dev/dsintro.html) It looks like index description should read:
index
index : array-like or Index (1d) Values must be hashable, same length as data. Non-unique index values are allowed.
The text was updated successfully, but these errors were encountered:
yep looks like hasn't been update pls do a pull-request with those changes
Sorry, something went wrong.
@bgbg pull-request for this?
DOC:Fix uniqueness of index for Series (pandas-dev#7808)
7081841
Successfully merging a pull request may close this issue.
The page http://pandas.pydata.org/pandas-docs/dev/generated/pandas.Series.html says:
A little bit earlier the same page says:
Other pages also mention non-unique index support (e.g. http://pandas.pydata.org/pandas-docs/dev/dsintro.html) It looks like
index
description should read:The text was updated successfully, but these errors were encountered: