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.
>>> import pandas as pd >>> x = pd.DataFrame([['foo', 'bar'], [1, None]]) >>> y = x[1].copy() # PANDAS 1.0.5 >>> x.isin(y) 0 1 0 False True 1 False True # PANDAS 1.1.0 >>> x.isin(y) 0 1 0 False True 1 False False
Is this change intended?