Answers for "set name of index column pandas series"

3

set index to column pandas

df = df.set_index('col')
df['col'] = df.index
Posted by: Guest on December-01-2020
0

python - give a name to index column

df.index.name                      # Show me the current name
df.index.name = 'my_column_name'   # Change the index name to my_column_name
Posted by: Guest on December-17-2020

Code answers related to "set name of index column pandas series"

Python Answers by Framework

Browse Popular Code Answers by Language