วิธีลบคอลัมน์แรกใน pandas dataframe (3 วิธี)
คุณสามารถใช้หนึ่งในสามวิธีต่อไปนี้เพื่อลบคอลัมน์แรกออกจาก Pandas DataFrame:
วิธีที่ 1: ใช้หยด
df. drop (columns= df.columns [0], axis= 1 , inplace= True )
วิธีที่ 2: ใช้ iloc
df = df. iloc [: , 1:]
วิธีที่ 3: ใช้เดล
del df[df. columns [0]]
แต่ละวิธีให้ผลลัพธ์ที่เหมือนกัน
ตัวอย่างต่อไปนี้แสดงวิธีการใช้แต่ละวิธีในทางปฏิบัติกับ Pandas DataFrame ต่อไปนี้:
import pandas as pd #createDataFrame df = pd. DataFrame ({' team ': ['A', 'A', 'A', 'A', 'B', 'B', 'B', 'B'], ' position ': ['G', 'G', 'F', 'F', 'G', 'G', 'F', 'F'], ' assists ': [5, 7, 7, 9, 12, 9, 9, 4], ' rebounds ': [11, 8, 10, 6, 6, 5, 9, 12]}) #view DataFrame df team position assists rebounds 0 A G 5 11 1 A G 7 8 2 A F 7 10 3 A F 9 6 4 B G 12 6 5 B G 9 5 6 B F 9 9 7 B F 4 12
วิธีที่ 1: ใช้หยด
รหัสต่อไปนี้แสดงวิธีการใช้ฟังก์ชัน drop() เพื่อปล่อยคอลัมน์แรกจาก Pandas DataFrame:
#drop first column of DataFrame
df. drop (columns= df.columns [0], axis= 1 , inplace= True )
#view updated DataFrame
df
position assists rebounds
0 G 5 11
1 G 7 8
2 F 7 10
3 F 9 6
4 G 12 6
5 G 9 5
6 F 9 9
7 F 4 12
โปรดทราบว่าคอลัมน์แรกที่เรียกว่า “ทีม” ได้ถูกลบออกจาก DataFrame
โปรดทราบว่าเราจำเป็นต้องใช้ inplace=True เพื่อลบคอลัมน์ใน DataFrame ดั้งเดิม
วิธีที่ 2: ใช้ iloc
รหัสต่อไปนี้แสดงวิธีการใช้ฟังก์ชัน iloc เพื่อลบคอลัมน์แรกออกจาก Pandas DataFrame:
#drop first column of DataFrame
df = df. iloc [: , 1:]
#view updated DataFrame
df
position assists rebounds
0 G 5 11
1 G 7 8
2 F 7 10
3 F 9 6
4 G 12 6
5 G 9 5
6 F 9 9
7 F 4 12
โปรดทราบว่าคอลัมน์แรกที่เรียกว่า “ทีม” ได้ถูกลบออกจาก DataFrame
วิธีที่ 3: ใช้เดล
รหัสต่อไปนี้แสดงวิธีการใช้ฟังก์ชัน del เพื่อลบคอลัมน์แรกออกจาก Pandas DataFrame:
#drop first column of DataFrame
del df[df. columns [0]]
#view updated DataFrame
df
position assists rebounds
0 G 5 11
1 G 7 8
2 F 7 10
3 F 9 6
4 G 12 6
5 G 9 5
6 F 9 9
7 F 4 12
โปรดทราบว่าคอลัมน์แรกที่เรียกว่า “ทีม” ได้ถูกลบออกจาก DataFrame
แหล่งข้อมูลเพิ่มเติม
บทช่วยสอนต่อไปนี้จะอธิบายวิธีดำเนินการทั่วไปอื่น ๆ ในแพนด้า:
วิธีลบคอลัมน์ที่ซ้ำกันใน Pandas
วิธีลบแถวตามดัชนีใน Pandas
วิธีลบคอลัมน์ตามดัชนีใน Pandas
วิธีลบแถวที่มีค่าเฉพาะใน Pandas