Skip to content
Advertisement

Python dataframe columns from row&column header

I have a data frame df1 like this:

JavaScript

I want to make another df with separate col for each df1 col. header-row name pair:

JavaScript

Basically I have used the pandas.DataFrame.describe function and now I would like to transpose it this way.

Advertisement

Answer

You can unstack your DataFrame into a Series, flatten the Index, turn it back into a DataFrame and transpose the result.

JavaScript
Advertisement