We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
mi = pd.MultiIndex.from_arrays([range(100),range(100)]) (1000001,0) in mi
mi = pd.MultiIndex.from_arrays([range(1000000),range(1000000)]) (1000001,0) in mi
The text was updated successfully, but these errors were encountered:
BUG: pandas-dev#10645 in using MultiIndex.__contains__
f4364a6
xref #10692
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
For a small multiindex the in operator works
mi = pd.MultiIndex.from_arrays([range(100),range(100)])
(1000001,0) in mi
For a large multiindex the in operator throws an IndexError
mi = pd.MultiIndex.from_arrays([range(1000000),range(1000000)])
(1000001,0) in mi
The text was updated successfully, but these errors were encountered: