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

เปรียบเทียบชุดแพนด้า 2 ชุดกับการพิมพ์ความแตกต่าง


ในโปรแกรมนี้ เราจะเปรียบเทียบชุด Pandas สองชุด และจะพิมพ์ความแตกต่างในชุดข้อมูล โดยความแตกต่าง เราหมายถึงตำแหน่งดัชนีที่องค์ประกอบไม่ตรงกัน

อัลกอริทึม

Step 1: Define two Pandas series, s1 and s2.
Step 2: Compare the series using compare() function in the Pandas series.
Step 3: Print their difference.

โค้ดตัวอย่าง

import pandas as pd

s1 = pd.Series([10,20,30,40,50,60])
s2 = pd.Series([10,30,30,40,55,60])

print("S1:\n", s1)
print("\nS2:\n", s2)

difference = s1.compare(s2)
print("\nDifference between the series: \n",difference)

ผลลัพธ์

S1:
0    10
1    20
2    30
3    40
4    50
5    60
dtype: int64

S2:
0    10
1    30
2    30
3    40
4    55
5    60
dtype: int64

Difference between the series:
    self  other
1  20.0   30.0
4  50.0   55.0

คำอธิบาย

ในผลลัพธ์ข้างต้น มีสองคอลัมน์ในผลลัพธ์ที่แตกต่าง หนึ่งคือ 'ตัวเอง' และ ข้างๆ มันคือ 'อื่น' ตัวเองหมายถึงซีรี่ส์ s1 ในขณะที่ 'other' หมายถึงซีรีย์ s2