Answers for "give column name to index pandas"

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 "give column name to index pandas"

Python Answers by Framework

Browse Popular Code Answers by Language