JSON to Pandas data frame

hasan.diwan at gmail.com hasan.diwan at gmail.com
Sat Jun 25 19:00:29 EDT 2016


David Shi <davidgshi at yahoo.co.uk> writes:

>How to convert a JSON object into a Pandas data frame?

You can use read_json --
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_json.html to
read it into a dataframe. Or you can read the json into python objects and use
read_records to create a pandas DataFrame from there. -- H



More information about the Python-list mailing list