ในการจัดกลุ่มคอลัมน์ในดาต้าเฟรมของ Pandas ให้ใช้ groupby() ขั้นแรก ให้เราสร้างดาต้าเฟรมของ Pandas -
dataFrame = pd.DataFrame( { "Car": ["Audi", "Lexus", "Audi", "Mercedes", "Audi", "Lexus", "Mercedes", "Lexus", "Mercedes"], "Reg_Price": [1000, 1400, 1100, 900, 1700, 1800, 1300, 1150, 1350] } )
ตอนนี้ให้เราจัดกลุ่มตามคอลัมน์รถ -
res = dataFrame.groupby("Car")
หลังจากจัดกลุ่มแล้ว เราจะใช้ฟังก์ชันเพื่อค้นหาราคาจดทะเบียน (Reg_Price) ของชื่อรถที่จัดกลุ่ม -
res.mean()
ซึ่งคำนวณค่าเฉลี่ยของราคาทะเบียนตามคอลัมน์ รถยนต์
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # dataframe with one of the columns as Reg_Price dataFrame = pd.DataFrame( { "Car": ["Audi", "Lexus", "Audi", "Mercedes", "Audi", "Lexus", "Mercedes", "Lexus", "Mercedes"], "Reg_Price": [1000, 1400, 1100, 900, 1700, 1800, 1300, 1150, 1350] } ) print"DataFrame...\n",dataFrame # grouped according to Car res = dataFrame.groupby("Car") print"\nMean of Registration Price grouped according to Car names...\n",res.mean()
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
DataFrame... Car Reg_Price 0 Audi 1000 1 Lexus 1400 2 Audi 1100 3 Mercedes 900 4 Audi 1700 5 Lexus 1800 6 Mercedes 1300 7 Lexus 1150 8 Mercedes 1350 Mean of Registration Price grouped according to Car names... Reg_Price Car Audi 1266.666667 Lexus 1450.000000 Mercedes 1183.333333