找回密码
 立即注册
首页 业界区 业界 Excel处理控件Aspose.Cells教程:在 Python 中将 JSON ...

Excel处理控件Aspose.Cells教程:在 Python 中将 JSON 转换为 Pandas DataFrame

别萧玉 9 小时前
1.png

在数据分析、报告和 ETL 流程中,使用 JSON 和 Pandas DataFrame 非常常见。虽然 Pandas 提供了read_json基本的解析功能,但它在处理深度嵌套结构、超大文件或 Excel 优先工作流时可能会遇到困难。Aspose.Cells for Python 提供了丰富的 JSON 到 Excel 转换流程,您可以轻松地将其与 Pandas 集成,以获取干净的 DataFrame 进行分析。在本篇教程中,您将学习如何在 Python 中将 JSON 转换为 Pandas DataFrame。
Aspose.Cells官方试用版免费下载,请联系Aspose官方授权代理商慧都科技
加入Aspose技术交流QQ群(1041253375),与更多小伙伴一起探讨提升开发技能。
将 JSON 转换为 Pandas DataFrame 的 Python 库

Aspose.Cells for Python via .NET是一款功能强大的电子表格 API,无需 Microsoft Excel。除了传统的 Excel 自动化功能外,它还支持直接导入和导出 JSON,非常适合将 JSON 转换为 Pandas DataFrame,然后在 Excel 中保存或处理。
使用 Aspose.Cells,您可以:

  • 使用将 JSON 导入工作表JsonUtility,并提供处理数组和嵌套结构的选项。
  • 将工作表范围转换为 Pandas DataFrames以进行分析和可视化。
  • 在 Excel 文件内创建、加载和处理 JSON,以适合分析管道。
  • 将 DataFrames 导出回 Excel(XLSX、CSV、ODS、PDF)以进行报告。
简而言之,该库可以轻松地将数据从 JSON 格式迁移到 Excel 中用于报告,同时您可以使用 Pandas 进行更深入的分析。它将JsonUtilityJSON 导入工作表,并JsonLayoutOptions控制数组和嵌套对象的扩展方式。
将 JSON 转换为 DataFrame

Aspose.Cells 直接将 JSON 导入工作表。然后读取标题行和数据行,构建 Pandas DataFrame。
按照以下步骤将 JSON 转换为 pandas DataFrame:

  • 创建一个工作簿并获取第一个工作表。
  • 配置JsonLayoutOptions将数组视为表。
  • 0在行、列处导入 JSON 字符串0。
  • 使用第一行作为列标题。
  • 提取剩余的行作为数据。
  • 构建一个 Pandas DataFrame。
以下代码示例展示了如何在 Python 中将 JSON 转换为 pandas DataFrame:
  1. import pandas as pd
  2. import aspose.cells as ac
  3. # Create a new workbook and get the first worksheet (0-based index)
  4. wb = ac.Workbook()
  5. ws = wb.worksheets.get(0)
  6. # Configure how JSON should be laid out in the worksheet
  7. options = ac.utility.JsonLayoutOptions()
  8. options.array_as_table = True           # Treat a top-level JSON array as a table (rows/columns)
  9. # Example JSON array of simple objects
  10. json_data = '[{"id":1,"name":"Alice"},{"id":2,"name":"Bob"}]'
  11. # Import JSON into the worksheet starting at row=0, col=0 (cell A1)
  12. ac.utility.JsonUtility.import_data(json_data, ws.cells, 0, 0, options)
  13. # Locate the first row that contains data (this will be our header row)
  14. header_idx = ws.cells.min_data_row
  15. # Extract header values from that row to use as DataFrame column names
  16. columns = [cell.value for cell in ws.cells.rows[header_idx]]
  17. # Extract all subsequent rows as data (skip the header row)
  18. data = [
  19.     [cell.value for cell in row]
  20.     for idx, row in enumerate(ws.cells.rows)
  21.     if row and idx != header_idx
  22. ]
  23. # Build the DataFrame using the collected headers and rows
  24. df = pd.DataFrame(data, columns=columns)
  25. # Display the result
  26. print(df)
复制代码
输出:
  1.     id   name
  2. 0  1.0  Alice
  3. 1  2.0    Bob
复制代码
将嵌套 JSON 转换为 Pandas DataFrame

如果您的 JSON 包含嵌套对象,Aspose.Cells 会使用 JsonUtility 将 JSON 导入工作表,然后您可以将其导出到 DataFrame。JsonLayoutOptions 控制数组和嵌套对象的展开方式。
按照以下步骤将嵌套 JSON 转换为 pandas DataFrame:

  • 创建一个工作簿并选择第一个工作表。
  • 设置所需的JsonLayoutOptions属性,例如array_as_table=True、ignore_array_title=True、ignore_object_title=True和kept_schema=True。
  • 在行0、列处导入嵌套的 JSON 0。
  • 检测使用的范围并读取整个跨度内的标题行。
  • 读取同一跨度(固定宽度)的所有后续行。
  • 构建 DataFrame;可选地转换数据类型(例如,total转换为数字)。
以下代码示例展示了如何在 Python 中将嵌套 JSON 转换为 pandas DataFrame:
  1. import pandas as pd
  2. import aspose.cells as ac
  3. # Create Workbook and get first worksheet
  4. wb = ac.Workbook()
  5. ws = wb.worksheets.get(0)
  6. # Layout options for nested JSON
  7. opt = ac.utility.JsonLayoutOptions()
  8. opt.array_as_table = True  # Treat 'orders' array as a table (rows)
  9. opt.ignore_array_title = True  # Do not place a title row for the 'orders' array
  10. opt.ignore_object_title = True  # Do not place extra title rows for nested objects (e.g., 'buyer')
  11. opt.kept_schema = True  # Keep a stable set of columns even if some records miss fields
  12. # Step 3: Your nested JSON
  13. nested = '''
  14. {
  15.   "batch": "A1",
  16.   "orders": [
  17.     {"orderId": "1001", "total": "49.90", "buyer": {"city": "NYC", "zip": "10001"}},
  18.     {"orderId": "1002", "total": "79.00", "buyer": {"city": "Boston", "zip": "02108"}}
  19.   ]
  20. }
  21. '''
  22. # Import at A1 (row=0, col=0) using the options above
  23. ac.utility.JsonUtility.import_data(nested, ws.cells, 0, 0, opt)
  24. # Detect used range
  25. first_row = ws.cells.min_data_row
  26. first_col = ws.cells.min_data_column
  27. last_row = ws.cells.max_data_row
  28. last_col = ws.cells.max_data_column
  29. # Read header row across the full used column span (fixed width)
  30. raw_columns = [ws.cells.get(first_row, c).value for c in range(first_col, last_col + 1)]
  31. # Make headers safe: replace None/blank with "Column{n}" and cast to str
  32. columns = [
  33.     (str(v) if v is not None and str(v).strip() != "" else f"Column{idx + 1}")
  34.     for idx, v in enumerate(raw_columns)
  35. ]
  36. # Read data rows across the same span (fixed width guarantees alignment)
  37. data = []
  38. for r in range(first_row + 1, last_row + 1):
  39.     row_vals = [ws.cells.get(r, c).value for c in range(first_col, last_col + 1)]
  40.     data.append(row_vals)
  41. # Build DataFrame
  42. df = pd.DataFrame(data, columns=columns)
  43. # Optional: tidy up column names (e.g., replace spaces)
  44. df.columns = [str(c).strip() for c in df.columns]
  45. # Optional typing:
  46. # - Keep ZIPs as strings (leading zeros matter)
  47. # - Convert totals to numeric (coerce non-numeric to NaN)
  48. for col in list(df.columns):
  49.     if col.lower().endswith("total"):
  50.         df[col] = pd.to_numeric(df[col], errors="coerce")
  51. # Print
  52. print(df)
复制代码
输出:
  1.      A1  1001  49.90     NYC  10001
  2. 0  None  1002  79.00  Boston  02108
复制代码
注意:如果启用convert_numeric_or_date=True,看起来像数字的字符串(例如总数)可能会转换为数字,但邮政编码(例如)"02108"可能会丢失前导零。False如果您需要将邮政编码转换为字符串,请保留此选项。
通过 JSON 将 Excel 转换为 Pandas DataFrame

使用 Aspose.Cells 将任意 Excel 范围导出为 JSON,然后将该 JSON 作为 DataFrame 加载到 Pandas 中。当您需要为服务或管道进行结构化 JSON 交接时,此功能非常有用。
按照以下步骤通过 JSON 将 Excel 转换为 pandas DataFrame:

  • 创建一个新工作簿,获取第一个工作表,并添加示例值。
  • 使用默认值创建JsonSaveOptions。
  • 使用该方法将使用的范围导出为JSON字符串export_range_to_json()。
  • 使用该方法将 JSON 字符串读入 DataFrame pd.read_json(io.StringIO(json_text))。
  • 根据需要检查或处理 DataFrame。
以下代码示例展示了如何在 Python 中通过 JSON 将 Excel 转换为 pandas DataFrame:
  1. import io
  2. import pandas as pd
  3. from aspose.cells.utility import JsonUtility  # JSON export utility
  4. from aspose.cells import Workbook, JsonSaveOptions, License
  5. # Create a new workbook and access the first worksheet
  6. workbook = Workbook()
  7. worksheet = workbook.worksheets.get(0)
  8. # Get the cells of the worksheet
  9. cells = worksheet.cells
  10. # Populate a small table (headers + rows)
  11. cells.get("A1").value = "Name"
  12. cells.get("B1").value = "Age"
  13. cells.get("C1").value = "City"
  14. cells.get("A2").value = "Alice"
  15. cells.get("B2").value = 25
  16. cells.get("C2").value = "New York"
  17. cells.get("A3").value = "Bob"
  18. cells.get("B3").value = 30
  19. cells.get("C3").value = "San Francisco"
  20. cells.get("A4").value = "Charlie"
  21. cells.get("B4").value = 35
  22. cells.get("C4").value = "Los Angeles"
  23. # Set up JSON save options (defaults are fine for a simple table)
  24. json_save_options = JsonSaveOptions()
  25. # Export the used range to a JSON string
  26. # max_display_range grabs the full rectangular region that contains data
  27. json_text = JsonUtility.export_range_to_json(cells.max_display_range, json_save_options)
  28. # Read the JSON string into a Pandas DataFrame
  29. #    Pandas can parse a JSON string directly
  30. df = pd.read_json(io.StringIO(json_text))
  31. # Use the DataFrame
  32. print(df)
复制代码
输出:
  1.       Name  Age           City
  2. 0    Alice   25       New York
  3. 1      Bob   30  San Francisco
  4. 2  Charlie   35    Los Angeles
复制代码
结论

使用 Aspose.Cells for Python,将 JSON 转换为 Pandas DataFrames 变得非常简单。您可以获得可靠的嵌套结构处理、模式稳定性选项,以及在需要时轻松导出到 Excel 的途径。将 Pandas 的灵活性与 Aspose.Cells 中的 JSON/Excel 管道相结合,简化数据处理并解锁强大的 Python 分析功能。
Aspose.Cells官方试用版免费下载,请联系Aspose官方授权代理商慧都科技
加入Aspose技术交流QQ群(1041253375),与更多小伙伴一起探讨提升开发技能。

来源:程序园用户自行投稿发布,如果侵权,请联系站长删除
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
您需要登录后才可以回帖 登录 | 立即注册