为字典变量创建数据框时出错

时间:2017-02-16 06:43:29

标签: python-3.x

与USDA合作生产Databse产品,数据库采用JSON格式。但是,我已经使用json包破解了它

美国农业部食品数据json表格破解成DataFrame:

here

但是,数据中很少有变量在词典表格

我正在尝试为变量'创建一个DataFrame。营养素' 。但是得到以下错误

Error while Creating the Database

请帮我摆脱错误,下面提到的是代码 营养物[]

for rec in db:
    fnuts = DataFrame(rec['nutrients'])
    fnuts['id'] = rec['id']
    nutrients.append(fnuts)`

1 个答案:

答案 0 :(得分:-1)

import pandas as pd


nutrients = pd.DataFrame(db1['nutrients'])