-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
BugIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves
Milestone
Description
from mailinglist
cc @ruidc
With the following DataFrame:
df = pandas.DataFrame(index=[1, 10, 'C', 'E'], columns=[1, 2, 3])
df.ix[df.index[:-1]] works
df.ix[:-1] doesn't
df.ix[[1, 10]] does not work
df.ix[pandas.Index([1, 10], dtype=df.index.dtype)] works
df.ix[10] does not work
Metadata
Metadata
Assignees
Labels
BugIndexingRelated to indexing on series/frames, not to indexes themselvesRelated to indexing on series/frames, not to indexes themselves