Skip to content
Advertisement

Pandas create multiindex from array and OrderedDict

I have a pandas dataframe like so:

JavaScript

I have have an array having level1 column names and an OrderedDict having level0 column names and how many columns fall under them:

JavaScript

col_names and col_layout_dict are being used in other part of the code too, so I don’t want to change them and also, since they are already available I would like to repurpose them to update the column names of my dataframe like so:

JavaScript

How can I do this?

Advertisement

Answer

Use list comprehension with range for flatten values of dict:

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