“Como definir os pandas de índice” Respostas de código

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

Definir índice em DataNeame

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

Como alterar o índice no DataFrame Python

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

PANDAS SET INDEX

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

Defina o índice pandas

Pandas dataframe set-index()
Harish Vasanth

Respostas semelhantes a “Como definir os pandas de índice”

Perguntas semelhantes a “Como definir os pandas de índice”

Mais respostas relacionadas para “Como definir os pandas de índice” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código