我有 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 列数据框。我该怎么做呢?
- 2 回答
- 0 关注
- 112 浏览
添加回答
举报
0/150
提交
取消