在 Python Pandas 中读取 JSON 文件

我有 JSON 文件的以下部分:

[{"Date":"2020-02-17","Rt_low":0.5,"Rt_avg":1.93,"Rt_up":4,"population":"hosp"},{"Date":"2020-02-18","Rt_low":0,"Rt_avg":1.74,"Rt_up":4,"population":"hosp"}]

我想在 Python Pandas 中将其作为数据框读取,其中 4 列作为标题:

L = ['Date','Rt_low','Rt_up','population']

我尝试了以下方法:

df = pd.DataFrame(pd.read_json(file_name, lines=True))

这为我提供了整个数据集的 [1 行 x 235 列]。我想获得 4 列数据框。我该怎么做呢?


慕哥9229398
浏览 117回答 2
2回答

紫衣仙女

你可以尝试这种方法。import pandas as pddataframe = pd.read_json('sample_json_file.json', orient='values')print(dataframe)最终数据帧的输出将由标题行和两个观察值组成。

慕神8447489

我刚刚这样做:df = pd.DataFrame(pd.read_json(file_name))
打开App,查看更多内容
随时随地看视频慕课网APP