将熊猫数据帧导出到 JSON 文件
原文:https://www . geesforgeks . org/export-pandas-data frame-to-JSON-file/
让我们看看如何将熊猫数据帧导出为 JSON 文件。为了执行这个任务,我们将使用 DataFrame.to_json() 和 pandas.read_json() 函数。
例 1 :
Python 3
# importing the module
import pandas as pd
# creating a DataFrame
df = pd.DataFrame([['a', 'b', 'c'], ['d', 'e', 'f'], ['g', 'h', 'i']],
index =['row 1', 'row 2', 'row3'],
columns =['col 1', 'col 2', 'col3'])
# storing the data in JSON format
df.to_json('file.json', orient = 'split', compression = 'infer', index = 'true')
# reading the JSON file
df = pd.read_json('file.json', orient ='split', compression = 'infer')
# displaying the DataFrame
print(df)
版权属于:月萌API www.moonapi.com,转载请注明出处