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
xref #34137
Currently
>>> pd.Index([('a', 'b'), ('b', 'c'), ('c', 'a')]) == ('c', 'a') >>> array([False, False, False])
The issue is such case is treated as a MultiIndex other than plain Index.
Expected:
>>> pd.Index([('a', 'b'), ('b', 'c'), ('c', 'a')]) == ('c', 'a') >>> array([False, False, True])
The text was updated successfully, but these errors were encountered:
@charlesdong1991 It seems this is currently failing on master with ValueError: ('Lengths must match to compare', (3,), (2,))
ValueError: ('Lengths must match to compare', (3,), (2,))
Sorry, something went wrong.
test for pandas-dev#34180
bf2f19b
Successfully merging a pull request may close this issue.
xref #34137
Currently
The issue is such case is treated as a MultiIndex other than plain Index.
Expected:
The text was updated successfully, but these errors were encountered: