“PANDAS SET INDEX” Respostas de código

Defina o índice para a coluna pandas

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

Os pandas criam uma coluna do índice

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

Como definir os pandas de índice

# 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

Redefinir Índice Pandas

df.reset_index(drop=True)
Exuberant Eel

Pandas DF Faça a coluna de índice definido

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

PANDAS SET INDEX

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

Respostas semelhantes a “PANDAS SET INDEX”

Perguntas semelhantes a “PANDAS SET INDEX”

Mais respostas relacionadas para “PANDAS SET INDEX” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código