我有一个带有无效行的json文件。我用这段代码读了它
import json
import pandas as pd
data = []
with open('json file ') as f:
for line in f:
data.append(json.loads(line))
对于丑陋的代码感到抱歉,我' m使用移动Stack Exchange应用程序。我想要做的是将数据对象转换为数据框,其中列是每个数据对象列表的前5个元素。你能帮我吗? 干杯!
丹尼答案 0 :(得分:6)
我感到有点惭愧。它就像使用Dataframe方法一样简单:
df = pd.DataFrame(data)