I have this relatively large (9mb) JSON, it's a list of dicts (I don't know if that's the convention for JSON) any way I've been able to read it in and turn into a data frame.
The data is a backtest for a predictive model model and is of the format:
[{"assetname":"xxx", 'return':0.9, "timestamp":1451080800},{"assetname":"xxx", 'return':0.9, "timestamp":1451080800}...{"assetname":"yyy", 'return':0.9, "timestamp":1451080800},{"assetname":"yyy", 'return':0.9, "timestamp":1451080800} ]
I would like the separate all the assets into their own data frames, can anyone help?
Here's the data btw http://www.mediafire.com/view/957et8za5wv56ba/test_predictions.json
pandas.Serieswith[pd.Series(x) for x in l]wherelis your list withdicts