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.
The following raises the error
pandas.Series([0.1, 0.2], index=[1, 2]).loc[[2, 3, 2]]
whilst
pandas.Series([0.1, 0.2], index=[1, 2]).loc[[2, 2, 3]]
does not. Or is there something invalid with this code?