วิธีแก้ไขค่าดัชนีตั้งแต่หนึ่งค่าขึ้นไปใน pandas


คุณสามารถใช้ไวยากรณ์ต่อไปนี้เพื่อแก้ไขค่าดัชนีเดียวใน Pandas DataFrame:

 df. rename (index={' Old_Value ':' New_Value '}, inplace= True )

และคุณสามารถใช้ไวยากรณ์ต่อไปนี้เพื่อแก้ไขค่าดัชนีหลายค่าพร้อมกันได้:

 df. rename (index={' Old1 ':' New1 ', ' Old2 ':' New2 '}, inplace= True )

ตัวอย่างต่อไปนี้แสดงวิธีใช้ไวยากรณ์นี้ในทางปฏิบัติ

ตัวอย่างที่ 1: เปลี่ยนค่าดัชนีใน Pandas DataFrame

สมมติว่าเรามี DataFrame แพนด้าดังต่อไปนี้:

 import pandas as pd

#createDataFrame
df = pd. DataFrame ({' team ': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H'],
                   ' points ': [25, 12, 15, 14, 19, 23, 25, 29],
                   ' assists ': [5, 7, 7, 9, 12, 9, 9, 4],
                   ' rebounds ': [11, 8, 10, 6, 6, 5, 9, 12]})

#make 'team' column the index column
df. set_index (' team ', inplace= True )

#view DataFrame
df

	points assists rebounds
team			
A 25 5 11
B 12 7 8
C 15 7 10
D 14 9 6
E 19 12 6
F 23 9 5
G 25 9 9
H 29 4 12

เราสามารถใช้รหัสต่อไปนี้เพื่อแทนที่ค่า “A” ในคอลัมน์ดัชนีด้วย “P”:

 #replace 'A' with 'P' in index
df. rename (index={' A ':' P '}, inplace= True )

#view updated DataFrame
df

        points assists rebounds
team			
P 25 5 11
B 12 7 8
C 15 7 10
D 14 9 6
E 19 12 6
F 23 9 5
G 25 9 9
H 29 4 12

โปรดทราบว่าค่า “A” ในดัชนีเดิมถูกแทนที่ด้วยในขณะที่ค่าอื่นๆ ทั้งหมดยังคงเหมือนเดิม

ตัวอย่างที่ 2: เปลี่ยนค่าดัชนีหลายค่าใน Pandas DataFrame

สมมติว่าเรามี DataFrame แพนด้าเหมือนเดิม:

 #view DataFrame
df

	points assists rebounds
team			
A 25 5 11
B 12 7 8
C 15 7 10
D 14 9 6
E 19 12 6
F 23 9 5
G 25 9 9
H 29 4 12

เราสามารถใช้รหัสต่อไปนี้เพื่อแทนที่ค่า “A” และ “B” ในคอลัมน์ดัชนี:

 #replace 'A' with 'P' and replace 'B' with 'Q' in index
df. rename (index={' A ':' P ', ' B ':' Q '}, inplace= True )

#view updated DataFrame
df

	points assists rebounds
team			
P 25 5 11
Q 12 7 8
C 15 7 10
D 14 9 6
E 19 12 6
F 23 9 5
G 25 9 9
H 29 4 12

โปรดทราบว่าค่า “A” และ “B” ในดัชนีเดิมได้ถูกแทนที่ด้วยแล้ว ในขณะที่ค่าอื่นๆ ทั้งหมดยังคงเหมือนเดิม

คุณสามารถใช้ไวยากรณ์เดียวกันทุกประการเพื่อแทนที่ค่าได้มากเท่าที่คุณต้องการในดัชนี

แหล่งข้อมูลเพิ่มเติม

บทช่วยสอนต่อไปนี้จะอธิบายวิธีดำเนินการทั่วไปอื่น ๆ ในแพนด้า:

วิธีรีเซ็ตดัชนีใน Pandas DataFrame
วิธีการตั้งค่าคอลัมน์เป็นดัชนีใน Pandas
วิธีแปลงดัชนีเป็นคอลัมน์ใน Pandas

เพิ่มความคิดเห็น

อีเมลของคุณจะไม่แสดงให้คนอื่นเห็น ช่องข้อมูลจำเป็นถูกทำเครื่องหมาย *