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

Установить индекс на панды столбца

# method A
df = df.set_index('col')
# method B
df['col'] = df.index
JJSSEECC

Панды создают столбец из индекса

df.reset_index(level=0, inplace=True)
Comfortable Cow

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

# 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

Сбросить индекс панд

df.reset_index(drop=True)
Exuberant Eel

Pandas DF Сделать Столбец индекса SET

df.reset_index(inplace=True)
df = df.rename(columns = {'index':'new column name'})
Important Impala

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

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

Ответы похожие на “Панды устанавливают индекс”

Вопросы похожие на “Панды устанавливают индекс”

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

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

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