David Shi <davidg...@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 -- https://mail.python.org/mailman/listinfo/python-list