Skip to content
Advertisement

Python Pandas Setting Dataframe index and Column names from an array

Lets say I have data loaded from an spreadsheet:

JavaScript

and I have a the names in another dataframe for the rows and the columns for example

JavaScript

Is there a way I can set the values in colnames['Names'].value as the index for df? and is there a way to do this for column names?

Advertisement

Answer

How about df.index = colnames['Names'] for example:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement