Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะใส่ Pandas DataFrame ลงในไฟล์ JSON แล้วอ่านอีกครั้งได้อย่างไร


ในการใส่ Pandas DataFrame ลงในไฟล์ JSON และอ่านอีกครั้ง เราสามารถใช้ to_json() และ read_json() วิธีการ

ขั้นตอน

  • สร้างข้อมูลตารางแบบสองมิติ ปรับขนาดได้ และอาจต่างกันได้ df .
  • พิมพ์ DataFrame อินพุต df .
  • ใช้ to_json() วิธีการดัมพ์ DataFrame ลงในไฟล์ JSON
  • ใช้ read_json() วิธีการอ่านไฟล์ JSON

ตัวอย่าง

import pandas as pd

df = pd.DataFrame(
   {
      "x": [5, 2, 7, 0],
      "y": [4, 7, 5, 1],
      "z": [9, 3, 5, 1]
   }
)
print "Input DataFrame is:\n", df
print "JSON output for input DataFrame: ", df.to_json("test.json")

print "Reading the created JSON file"
print "Dataframe is: \n", pd.read_json("test.json")

ผลลัพธ์

Input DataFrame is:
   x  y  z
0  5  4  9
1  2  7  3
2  7  5  5
3  0  1  1

JSON output for input DataFrame: None

Reading the created JSON file

Dataframe is:
   x  y  z
0  5  4  9
1  2  7  3
2  7  5  5
3  0  1  1

เมื่อเราใช้ df.to_json("test.json") มันสร้างไฟล์ JSON ชื่อ "test.json " จากข้อมูลที่กำหนดใน DataFrame

ต่อไป เมื่อเราใช้ pd.read_json("test.json") มันอ่านข้อมูลจาก test.json .