Skip to content
Advertisement

Specify ordering for columns when creating a DataFrame from list of dictionaries

I have a method that creates a list, results, and then appends to it a dict row which has keys (column names in my eventual dataframe) and values (row values in my eventual dataframe). Then I append the row and convert the results collection to a df at the end. For example:

JavaScript

The issue I have is that the column names are alphbetized so the df looks like this:

JavaScript

Is there a way to specify the column names to be in the order I want (“Name”, “Col”)? In reality I have many more columns so I’d prefer not to have to do:

JavaScript

and manually rearrange it. However, if I do so, does that just move around the column row or also the rows below? So, will “alice” and 3 in the row below also get moved around while moving the column as one would expect?

Advertisement

Answer

Specify a list of your desired ordering to the columns attribute, and DataFrame will reorder the columns when creating the DataFrame.

JavaScript

Or, DataFrame.from_records does this as well.

JavaScript

If you’re working with multiple columns, you could always choose to do columns=['Name', 'Age', *(row.keys() - {'Name', 'Age'})] assuming you don’t care about the ordering of the remaining columns.

I’ve written about constructing DataFrames from records in this post: Convert list of dictionaries to a pandas DataFrame


Another idea, fix the columns if the ordering is incorrect.

JavaScript

This will insert Name before Age if it is originally inserted after.

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