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

Python - ย้ายคอลัมน์ไปที่ตำแหน่งแรกใน Pandas DataFrame หรือไม่


ใช้ pop() เพื่อเปิดคอลัมน์และแทรกโดยใช้เมธอด insert() เช่น การย้ายคอลัมน์ ขั้นแรก ให้สร้าง DataFrame ที่มี 3 คอลัมน์ -

dataFrame = pd.DataFrame(
   {
      "Student": ['Jack', 'Robin', 'Ted', 'Marc', 'Scarlett', 'Kat', 'John'],"Result": ['Pass', 'Fail', 'Pass', 'Fail', 'Pass', 'Pass', 'Pass'],"Roll Number": [ 5, 10, 3, 8, 2, 9, 6]
   }
)

ย้ายคอลัมน์ "หมายเลขม้วน" ไปที่ตำแหน่งที่ 1 โดยเปิดคอลัมน์ออกก่อน -

shiftPos = dataFrame.pop("Roll Number")

แทรกคอลัมน์ในตำแหน่งที่ 1 -

dataFrame.insert(0, "Roll Number", shiftPos)

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# Create DataFrame
dataFrame = pd.DataFrame(
   {
      "Student": ['Jack', 'Robin', 'Ted', 'Marc', 'Scarlett', 'Kat', 'John'],"Result": ['Pass', 'Fail', 'Pass', 'Fail', 'Pass', 'Pass', 'Pass'],"Roll Number": [ 5, 10, 3, 8, 2, 9, 6]
   }
)

print"DataFrame ...\n",dataFrame

# move column "Roll Number" to 1st position
shiftPos = dataFrame.pop("Roll Number")

# insert column on the 1st position
dataFrame.insert(0, "Roll Number", shiftPos)

print"\nUpdated DataFrame after moving a column to the first position...\n",dataFrame

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

DataFrame ...
   Result   Roll Number   Student
0    Pass             5      Jack
1    Fail            10     Robin
2    Pass             3       Ted
3    Fail             8      Marc
4    Pass             2  Scarlett
5    Pass             9       Kat
6    Pass             6      John

Updated DataFrame after moving a column to the first position...
   Roll Number   Result   Student
0            5     Pass      Jack
1           10     Fail     Robin
2            3     Pass       Ted
3            8     Fail      Marc
4            2     Pass  Scarlett
5            9     Pass       Kat
6            6     Pass      John