หากต้องการเพิ่มคำนำหน้าให้กับชื่อคอลัมน์ทั้งหมด ให้ใช้เมธอด add_prefix() ขั้นแรก นำเข้าไลบรารี Pandas ที่จำเป็น -
import pandas as pd
สร้าง DataFrame ที่มี 4 คอลัมน์ -
dataFrame = pd.DataFrame({"Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Cubic_Capacity": [2000, 1800, 1500, 2500, 2200, 3000],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000],"Units_Sold": [ 100, 120, 150, 110, 200, 250] })
เพิ่มคำนำหน้าให้กับ _column ให้กับทุกคอลัมน์โดยใช้ add_prefix() -
dataFrame.add_prefix('column_')
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # creating dataframe dataFrame = pd.DataFrame({"Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Cubic_Capacity": [2000, 1800, 1500, 2500, 2200, 3000],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000],"Units_Sold": [ 100, 120, 150, 110, 200, 250] }) print"DataFrame ...\n",dataFrame print"\nUpdated DataFrame...\n",dataFrame.add_prefix('column_')
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
DataFrame ... Car Cubic_Capacity Reg_Price Units_Sold 0 BMW 2000 7000 100 1 Lexus 1800 1500 120 2 Tesla 1500 5000 150 3 Mustang 2500 8000 110 4 Mercedes 2200 9000 200 5 Jaguar 3000 6000 250 Updated DataFrame... column_Car column_Cubic_Capacity column_Reg_Price column_Units_Sold 0 BMW 2000 7000 100 1 Lexus 1800 1500 120 2 Tesla 1500 5000 150 3 Mustang 2500 8000 110 4 Mercedes 2200 9000 200 5 Jaguar 3000 6000 250