Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

I have a list of dictionaries like this:

[{'points': 50, 'time': '5:00', 'year': 2010},

{'points': 25, 'time': '6:00', 'month': "february"}, {'points':90, 'time': '9:00', 'month': 'january'}, {'points_h1':20, 'month': 'june'}]

And I want to turn this into a pandas DataFrame like this:

   month  points  points_h1  time  year 

0  NaN     50      NaN       5:00   2010 

1 february 25      NaN       6:00    NaN 

2 january  90      NaN       9:00    NaN 

3 june     NaN      20       NaN     NaN

Note: the Order of the columns does not matter.

How can I turn the list of dictionaries into a pandas DataFrame as shown above?

1 Answer

0 votes
by (106k points)

To turning the list of dictionaries into a pandas DataFrame you can use the following piece of code:-

pd.DataFrame(x)

Browse Categories

...