-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
Error ReportingIncorrect or improved errors from pandasIncorrect or improved errors from pandasIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves
Description
xref #8956
This should raise a ValueError
.
In [18]: s = Series(np.arange(5,1,-1))
In [19]: s
Out[19]:
0 5
1 4
2 3
3 2
dtype: int64
In [20]: s.iloc[[True,False,True]]
Out[20]:
0 5
2 3
dtype: int64
Metadata
Metadata
Assignees
Labels
Error ReportingIncorrect or improved errors from pandasIncorrect or improved errors from pandasIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves