“Как установить индекс панд” Ответ

Как установить индекс панд

# assignment copy
df = df.set_index('month')

# or inplace
df.set_index('month', inplace=True)

#      year   sale  month            month  year   sale
#  0   2012   55    1                1      2012   55
#  1   2014   40    4       =>       4      2014   40
#  2   2013   84    7                7      2013   84
#  3   2014   31    10               10     2014   31
FaceToThePalm

Установить индекс в DataRame

df = df.set_index('col')
Real Rook

Как изменить индекс в DataFrame Python

index = [1,2]
df.index = index
Bewildered Barracuda

Панды устанавливают индекс

>>> college_idx = college.set_index('instnm')>>> sats = college_idx[['satmtmid', 'satvrmid']].dropna()>>> sats.head()
Uninterested Unicorn

Установить индекс панд

Pandas dataframe set-index()
Harish Vasanth

Ответы похожие на “Как установить индекс панд”

Вопросы похожие на “Как установить индекс панд”

Больше похожих ответов на “Как установить индекс панд” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования