You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
When starting to fix the slices and df.ix[list], i noticed that slicing from label to position (or reversed) and selecting a range with both labels and positions on 0.8.1 has (at least for me) unexpected behavior (even for indexes without integers). So what can we expect from pandas to behave in these situations?
from mailinglist
cc @ruidc
The text was updated successfully, but these errors were encountered: