DataFrame constructor error when load data from JSON
I got the following error when load JSON data into dataframe by df = pd.DataFrame(data)
DataFrame constructor not properly called!
/usr/local/lib/python2.7/site-packages/pandas/core/frame.pyc in __init__(self, data, index, columns, dtype, copy)
284 copy=False)
285 else:
--> 286 raise PandasError('DataFrame constructor not properly called!')
287
288 NDFrame.__init__(self, mgr, fastpath=True)
PandasError: DataFrame constructor not properly called!
Is think I read the data into dataframe on a wrong way,
What's the correct way to read it into dataframe.