迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

在 Pandas 中加载 JSON 文件

作者:迹忆客 最近更新:2024/04/21 浏览次数:

本教程介绍了如何使用 pandas.read_json() 方法将一个 JSON 文件加载到 Pandas DataFrame 中。


将 JSON 文件加载到 Pandas DataFrame 中

我们可以使用 pandas.read_json() 函数将 JSON 文件的路径作为参数传递给 pandas.read_json() 函数,将 JSON 文件加载到 Pandas DataFrame 中。

{
    "Name": {"1": "Anil", "2": "Biraj", "3": "Apil", "4": "Kapil"},
    "Age": {"1": 23, "2": 25, "3": 28, "4": 30},
}

示例 data.json 文件的内容如上所示。我们将从上述 JSON 文件中创建一个 DataFrame。

import pandas as pd

df = pd.read_json("data.json")

print("DataFrame generated using JSON file:")
print(df)

输出:

DataFrame generated using JSON file:
    Name  Age
1   Anil   23
2  Biraj   25
3   Apil   28
4  Kapil   30

它显示的是由 data.json 文件中的数据生成的 DataFrame。我们必须确保在当前工作目录下有 data.json 文件才能生成 DataFrame,否则我们需要提供 JSON 文件的完整路径作为 pandas.read_json() 方法的参数。

由 JSON 文件形成的 DataFrame 取决于 JSON 文件的方向。我们一般有三种不同的 JSON 文件的面向。

  • 面向索引
  • 面向值
  • 面向列

将面向索引的 JSON 文件加载到 Pandas DataFrame 中

{
    "0": {"Name": "Anil", "Age": 23},
    "1": {"Name": "Biraj", "Age": 25},
    "2": {"Name": "Apil", "Age": 26},
}

这是一个面向索引的 JSON 文件的例子,其中顶层键代表数据的索引。

import pandas as pd

df = pd.read_json("data.json")

print("DataFrame generated from Index Oriented JSON file:")
print(df)

输出:

DataFrame generated from Index Oriented JSON file:
         0      1     2
Name  Anil  Biraj  Apil
Age     23     25    26

它将从 data.json 文件中创建一个 DataFrame,顶层键在 DataFrame 中表示为列。

将面向值的 JSON 文件加载到 Pandas DataFrame 中

[["Anil", 23], ["Biraj", 25], ["Apil", 26]]

这是一个面向值的 JSON 文件的例子,数组中的每个元素代表每一行的值。

import pandas as pd

df = pd.read_json("data.json")

print("DataFrame generated from Value Oriented JSON file:")
print(df)

输出:

DataFrame generated from Value Oriented JSON file:
       0   1
0   Anil  23
1  Biraj  25
2   Apil  26

它将从 data.json 文件中创建一个 DataFrame,JSON 文件中数组的每个元素将在 DataFrame 中表示为一行。


将面向列的 JSON 文件加载到 Pandas DataFrame 中

{"Name": {"1": "Anil", "2": "Biraj", "3": "Apil"}, "Age": {"1": 23, "2": 25, "3": 28}}

它是一个面向列的 JSON 文件顶层索引的例子,代表数据的列名。

import pandas as pd

df = pd.read_json("data.json")

print("DataFrame generated from  Column Oriented JSON file:")
print(df)

输出:

DataFrame generated from Column Oriented JSON file:
    Name  Age
1   Anil   23
2  Biraj   25
3   Apil   28

它将从 data.json 文件中创建一个 DataFrame,JSON 文件的顶层索引将作为 DataFrame 中的列名。

上一篇:将 Pandas DataFrame 写入 CSV

下一篇:没有了

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

将 Pandas DataFrame 写入 CSV

发布时间:2024/04/21 浏览次数:174 分类:Python

本教程介绍了我们如何使用 pandas.DataFrame.to_csv()函数将 DataFrame 写入 CSV 文件。

拆分 Pandas DataFrame

发布时间:2024/04/21 浏览次数:115 分类:Python

本教程介绍了如何将一个 DataFrame 分割成多个较小的 DataFrame。

比较 Pandas DataFrame 对象

发布时间:2024/04/21 浏览次数:62 分类:Python

本教程介绍了我们如何在 Python 中比较 Pandas DataFrame 对象。比较 DataFrames 对检查 DataFrames 之间的差异非常有帮助。

Pandas 复制 DataFrame

发布时间:2024/04/21 浏览次数:117 分类:Python

本教程将介绍如何使用 DataFrame.copy()方法复制 DataFrame 对象,并探讨 DataFrame.copy()方法的使用。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便