Код: Выделить всё
>>> df.shape
(1000,10)
>>> my_slice = df.ix[10,:]
>>> my_slice.shape
(10,)
Подробнее здесь: https://stackoverflow.com/questions/120 ... y-position
Код: Выделить всё
>>> df.shape
(1000,10)
>>> my_slice = df.ix[10,:]
>>> my_slice.shape
(10,)