pandas convert index to column
df.reset_index(inplace=True)
pandas convert index to column
df.reset_index(inplace=True)
how to set index pandas
# 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
set index to column pandas
df = df.set_index('col')
df['col'] = df.index
pandas create a column from index
df.reset_index(level=0, inplace=True)
change index to dataframe pandas
#cree un indice par defaut sur la base de donnee
df.reset_index()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us